| 50 | static_assert(sizeof(HDRParams) <= sizeof(PerFrameData)); |
| 51 | |
| 52 | struct MouseState |
| 53 | { |
| 54 | glm::vec2 pos = glm::vec2(0.0f); |
| 55 | bool pressedLeft = false; |
| 56 | } mouseState; |
| 57 | |
| 58 | CameraPositioner_FirstPerson positioner(vec3(-10.0f, 3.0f, 3.0f), vec3(0.0f, 0.0f, -1.0f), vec3(0.0f, 1.0f, 0.0f)); |
| 59 | Camera camera(positioner); |
nothing calls this directly
no outgoing calls
no test coverage detected