ClipPlane.cpp 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Copyright (c) 2021, Jesse Buhagiar <jooster669@gmail.com>
  3. * Copyright (c) 2021, Stephan Unverwerth <s.unverwerth@serenityos.org>
  4. * Copyright (c) 2022, Jelle Raaijmakers <jelle@gmta.nl>
  5. * Copyright (c) 2022, Ryan Bethke <ryanbethke11@gmail.com>
  6. *
  7. * SPDX-License-Identifier: BSD-2-Clause
  8. */
  9. #include <LibGL/GLContext.h>
  10. namespace GL {
  11. void GLContext::gl_clip_plane(GLenum plane, GLdouble const* equation)
  12. {
  13. APPEND_TO_CALL_LIST_AND_RETURN_IF_NEEDED(gl_clip_plane, plane, equation);
  14. RETURN_WITH_ERROR_IF(m_in_draw_state, GL_INVALID_OPERATION);
  15. RETURN_WITH_ERROR_IF((plane < GL_CLIP_PLANE0) || (plane > GL_CLIP_PLANE5), GL_INVALID_ENUM);
  16. auto plane_idx = static_cast<size_t>(plane) - GL_CLIP_PLANE0;
  17. auto eqn = FloatVector4(equation[0], equation[1], equation[2], equation[3]);
  18. m_clip_plane_attributes.eye_clip_plane[plane_idx] = model_view_matrix() * eqn;
  19. m_clip_planes_dirty = true;
  20. }
  21. void GLContext::gl_get_clip_plane(GLenum plane, GLdouble* equation)
  22. {
  23. RETURN_WITH_ERROR_IF(m_in_draw_state, GL_INVALID_OPERATION);
  24. RETURN_WITH_ERROR_IF((plane < GL_CLIP_PLANE0) || (plane > GL_CLIP_PLANE5), GL_INVALID_ENUM);
  25. auto plane_idx = static_cast<size_t>(plane) - GL_CLIP_PLANE0;
  26. equation[0] = static_cast<GLdouble>(m_clip_plane_attributes.eye_clip_plane[plane_idx][0]);
  27. equation[1] = static_cast<GLdouble>(m_clip_plane_attributes.eye_clip_plane[plane_idx][1]);
  28. equation[2] = static_cast<GLdouble>(m_clip_plane_attributes.eye_clip_plane[plane_idx][2]);
  29. equation[3] = static_cast<GLdouble>(m_clip_plane_attributes.eye_clip_plane[plane_idx][3]);
  30. }
  31. void GLContext::sync_clip_planes()
  32. {
  33. if (!m_clip_planes_dirty)
  34. return;
  35. m_clip_planes_dirty = false;
  36. // TODO: Replace magic number 6 with device-dependent constant
  37. Vector<FloatVector4, 6> user_clip_planes;
  38. for (size_t plane_idx = 0; plane_idx < 6; ++plane_idx) {
  39. if ((m_clip_plane_attributes.enabled & (1 << plane_idx)) != 0u) {
  40. user_clip_planes.append(m_clip_plane_attributes.eye_clip_plane[plane_idx]);
  41. }
  42. }
  43. m_rasterizer->set_clip_planes(user_clip_planes);
  44. }
  45. }