Mercurial > hg > Members > kono > Cerium
changeset 729:4dc02d3e98bb
fix Test
line wrap: on
line diff
--- a/Renderer/Test/Chain.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/Chain.h Mon Dec 21 19:15:24 2009 +0900 @@ -22,7 +22,6 @@ void chain_move(TaskManager *manager, SceneGraphPtr sg, int w, int h); void chain_collision(SceneGraphPtr sg, int w, int h, SceneGraphPtr osg); - MainLoopPtr init_only_sg(SgChange *sgchange, int w, int h); MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h);
--- a/Renderer/Test/ball_bound.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/ball_bound.h Mon Dec 21 19:15:24 2009 +0900 @@ -3,6 +3,7 @@ #include "SceneGraphRoot.h" #include "Application.h" #include "MainLoop.h" +#include "viewer.h" class ball_bound : public Application {
--- a/Renderer/Test/boss1_action.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/boss1_action.cc Mon Dec 21 19:15:24 2009 +0900 @@ -209,12 +209,6 @@ } } -MainLoopPtr -boss1_action::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) -{ - return sgroot; -} - extern Application * application() { return new boss1_action();
--- a/Renderer/Test/boss1_action.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/boss1_action.h Mon Dec 21 19:15:24 2009 +0900 @@ -10,7 +10,6 @@ class boss1_action : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); }; static const float player_speed = 10.0f;
--- a/Renderer/Test/chain_old.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/chain_old.cc Mon Dec 21 19:15:24 2009 +0900 @@ -161,13 +161,6 @@ return sgroot; } -MainLoopPtr -Chain::init_only_sg(SgChange *sgchange, int w, int h) -{ - return sgchange; -} - - extern Application * application() { return new Chain();
--- a/Renderer/Test/direction.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/direction.cc Mon Dec 21 19:15:24 2009 +0900 @@ -95,12 +95,6 @@ return sgroot; } -MainLoopPtr -direction::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) -{ - return sgroot; -} - extern Application * application() { return new direction();
--- a/Renderer/Test/direction.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/direction.h Mon Dec 21 19:15:24 2009 +0900 @@ -6,6 +6,6 @@ class direction : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); + };
--- a/Renderer/Test/dynamic_create.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/dynamic_create.cc Mon Dec 21 19:15:24 2009 +0900 @@ -213,12 +213,6 @@ return sgroot; } -MainLoopPtr -dynamic_create::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) -{ - return sgroot; -} - extern Application * application() { return new dynamic_create();
--- a/Renderer/Test/dynamic_create.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/dynamic_create.h Mon Dec 21 19:15:24 2009 +0900 @@ -7,5 +7,4 @@ class dynamic_create : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/gaplant.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/gaplant.cc Mon Dec 21 19:15:24 2009 +0900 @@ -33,12 +33,6 @@ return sgroot; } -MainLoopPtr -gaplant::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) -{ - return sgroot; -} - extern Application * application() { return new gaplant();
--- a/Renderer/Test/gaplant.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/gaplant.h Mon Dec 21 19:15:24 2009 +0900 @@ -10,6 +10,5 @@ class gaplant : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/ieshoot.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/ieshoot.cc Mon Dec 21 19:15:24 2009 +0900 @@ -218,12 +218,6 @@ return sgroot; } -MainLoopPtr -ieshoot::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) -{ - return sgroot; -} - extern Application * application() { return new ieshoot();
--- a/Renderer/Test/ieshoot.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/ieshoot.h Mon Dec 21 19:15:24 2009 +0900 @@ -7,6 +7,5 @@ class ieshoot : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/node.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/node.cc Mon Dec 21 19:15:24 2009 +0900 @@ -73,12 +73,6 @@ return sgroot; } -MainLoopPtr -node::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) -{ - return sgroot; -} - extern Application * application() { return new node();
--- a/Renderer/Test/node.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/node.h Mon Dec 21 19:15:24 2009 +0900 @@ -6,6 +6,5 @@ class node : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/panel.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/panel.cc Mon Dec 21 19:15:24 2009 +0900 @@ -40,12 +40,6 @@ return sgroot; } -MainLoopPtr -panel::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) -{ - return sgroot; -} - extern Application * application() { return new panel();
--- a/Renderer/Test/panel.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/panel.h Mon Dec 21 19:15:24 2009 +0900 @@ -6,6 +6,5 @@ class panel : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/send_linda.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/send_linda.cc Mon Dec 21 19:15:24 2009 +0900 @@ -214,12 +214,6 @@ return sgr; } -MainLoopPtr -send_linda::init_only_sg(SgChange *sgchange, int w, int h) -{ - return sgchange; -} - extern Application * application() { return new send_linda();
--- a/Renderer/Test/send_linda.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/send_linda.h Mon Dec 21 19:15:24 2009 +0900 @@ -7,6 +7,5 @@ class send_linda : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *sgroot, int screen_w, int screen_h); };
--- a/Renderer/Test/universe.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/universe.cc Mon Dec 21 19:15:24 2009 +0900 @@ -68,12 +68,6 @@ return sgroot; } -MainLoopPtr -universe::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) -{ - return sgroot; -} - extern Application * application() { return new universe();
--- a/Renderer/Test/universe.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/universe.h Mon Dec 21 19:15:24 2009 +0900 @@ -7,6 +7,5 @@ class universe : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/untitled.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/untitled.cc Mon Dec 21 19:15:24 2009 +0900 @@ -148,12 +148,6 @@ return sgroot; } -MainLoopPtr -untitled::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) -{ - return sgroot; -} - extern Application * application() { return new untitled();
--- a/Renderer/Test/untitled.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/untitled.h Mon Dec 21 19:15:24 2009 +0900 @@ -7,6 +7,5 @@ class untitled : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/vacuum.cc Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/vacuum.cc Mon Dec 21 19:15:24 2009 +0900 @@ -182,12 +182,6 @@ return sgroot; } -MainLoopPtr -vacuum::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) -{ - return sgroot; -} - extern Application * application() { return new vacuum();
--- a/Renderer/Test/vacuum.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/vacuum.h Mon Dec 21 19:15:24 2009 +0900 @@ -10,7 +10,6 @@ class vacuum : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/viewer.h Sat Dec 19 20:32:02 2009 +0900 +++ b/Renderer/Test/viewer.h Mon Dec 21 19:15:24 2009 +0900 @@ -7,5 +7,4 @@ class viewer : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };