Changeset 121 for trunk/tests/render_test/rl.cc
- Timestamp:
- 06/15/13 17:47:57 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/render_test/rl.cc
r93 r121 8 8 #include <nv/logging.hh> 9 9 #include <nv/logger.hh> 10 #include <glm/glm.hpp> 11 #include <glm/gtc/matrix_transform.hpp> 12 #include <glm/gtc/type_ptr.hpp> 10 #include <nv/math.hh> 13 11 #include <nv/string.hh> 14 12 #include <nv/types.hh> … … 19 17 const nv::uint16 size_xy = size_x * size_y; 20 18 21 nv::uint8 height[size_xy] =19 static nv::uint8 height[size_xy] = 22 20 { 23 21 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, … … 39 37 }; 40 38 41 nv::uint8 map[size_xy] =39 static nv::uint8 map[size_xy] = 42 40 { 43 41 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, … … 224 222 case nv::KEY_UP : move.z = move.z - 1.0f; break; 225 223 case nv::KEY_DOWN : move.z = move.z + 1.0f; break; 224 default: break; 226 225 } 227 226 } 228 227 break; 228 default: break; 229 229 } 230 230 }
Note: See TracChangeset
for help on using the changeset viewer.