Browse Source

build: update unit tests following API change.

undefined
Sam Hocevar 11 years ago
parent
commit
561d33748f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/unit/camera.cpp

+ 1
- 1
test/unit/camera.cpp View File

@@ -42,7 +42,7 @@ LOLUNIT_FIXTURE(CameraTest)
up = vec3(0.f, 1.f, 0.f); up = vec3(0.f, 1.f, 0.f);
m_lookat = mat4::lookat(eye, target, up); m_lookat = mat4::lookat(eye, target, up);
q_lookat = quat(m_lookat); q_lookat = quat(m_lookat);
v_lookat = vec3::toeuler(q_lookat);
v_lookat = vec3::toeuler_zyx(q_lookat);
fov = 90.f; fov = 90.f;
screen_size = 800.f; screen_size = 800.f;
screen_ratio = 1.0f; screen_ratio = 1.0f;


Loading…
Cancel
Save