Browse Source

test: remove a useless cast.

legacy
Sam Hocevar sam 12 years ago
parent
commit
03250fa321
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      test/tutorial/tut03.cpp

+ 2
- 2
test/tutorial/tut03.cpp View File

@@ -56,8 +56,8 @@ public:
m_size = size;
m_size.x = (m_size.x + 15) & ~15;
m_size.y = (m_size.y + 15) & ~15;
m_texel_settings = vec4(1.0, 1.0, 2.0, 2.0) / (vec4)m_size.xyxy;
m_screen_settings = vec4(1.0, 1.0, 0.5, 0.5) * (vec4)m_size.xyxy;
m_texel_settings = vec4(1.0, 1.0, 2.0, 2.0) / m_size.xyxy;
m_screen_settings = vec4(1.0, 1.0, 0.5, 0.5) * m_size.xyxy;

/* Window size decides the world aspect ratio. For instance, 640×480
* will be mapped to (-0.66,-0.5) - (0.66,0.5). */


Loading…
Cancel
Save