Changeset 1050
- Timestamp:
- Nov 6, 2011, 2:07:47 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/video.cpp
r1044 r1050 45 45 46 46 #if defined __ANDROID__ || defined __CELLOS_LV2__ || defined __APPLE__ 47 ivec2 VideoData::saved_viewport = 0;47 ivec2 VideoData::saved_viewport(0, 0); 48 48 #endif 49 49 -
trunk/test/math/pi.cpp
r1008 r1050 14 14 15 15 #include <cstdio> 16 17 #if USE_SDL && defined __APPLE__ 18 # include <SDL_main.h> 19 #endif 16 20 17 21 #include "core.h" -
trunk/test/math/poly.cpp
r1015 r1050 14 14 15 15 #include <cstdio> 16 17 #if USE_SDL && defined __APPLE__ 18 # include <SDL_main.h> 19 #endif 16 20 17 21 #include "core.h" … … 96 100 } 97 101 98 int main( void)102 int main(int argc, char **argv) 99 103 { 100 104 typedef union { float f; uint32_t x; } flint; -
trunk/test/math/remez.cpp
r1027 r1050 15 15 #include <cstring> 16 16 #include <cstdio> 17 18 #if USE_SDL && defined __APPLE__ 19 # include <SDL_main.h> 20 #endif 17 21 18 22 #include "core.h" … … 37 41 } 38 42 39 int main( void)43 int main(int argc, char **argv) 40 44 { 41 45 RemezSolver<6> solver; -
trunk/test/tutorial/tut01.cpp
r1043 r1050 111 111 }; 112 112 113 int main( )113 int main(int argc, char **argv) 114 114 { 115 115 Application app("Tutorial 1: Triangle", ivec2(640, 480), 60.0f); -
trunk/test/tutorial/tut02.cpp
r1045 r1050 174 174 }; 175 175 176 int main( )176 int main(int argc, char **argv) 177 177 { 178 178 Application app("Tutorial 2: Cube", ivec2(640, 480), 60.0f); -
trunk/test/xolotl/xolotl.cpp
r1043 r1050 64 64 }; 65 65 66 int main( )66 int main(int argc, char **argv) 67 67 { 68 68 Application app("Xolotl", ivec2(640, 480), 60.0f);
Note: See TracChangeset
for help on using the changeset viewer.