- Timestamp:
- 07/15/11 15:22:48 (13 years ago)
- Location:
- ps/trunk/source
- Files:
-
- 6 edited
-
lib/external_libraries/enet.h (modified) (1 diff)
-
pch/engine/precompiled.h (modified) (1 diff)
-
ps/Preprocessor.cpp (modified) (1 diff)
-
renderer/Renderer.h (modified) (2 diffs)
-
scriptinterface/ScriptTypes.h (modified) (2 diffs)
-
tools/atlas/AtlasScript/ScriptInterface.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ps/trunk/source/lib/external_libraries/enet.h
r9579 r9827 40 40 #define _WINSOCK2API_ // winsock2.h include guard 41 41 42 #define WIN32 42 #ifndef WIN32 43 # define WIN32 44 #endif 43 45 44 46 #endif // OS_WIN -
ps/trunk/source/pch/engine/precompiled.h
r8542 r9827 28 28 // saved by including it here. (~10% in a full rebuild, as of r2365) 29 29 #include "ps/CStr.h" 30 #include "scripting/SpiderMonkey.h"31 30 #include <boost/shared_ptr.hpp> 32 31 #include <boost/weak_ptr.hpp> -
ps/trunk/source/ps/Preprocessor.cpp
r9426 r9827 764 764 } 765 765 766 u int len = oArg.Length;766 unsigned int len = oArg.Length; 767 767 while (true) 768 768 { -
ps/trunk/source/renderer/Renderer.h
r9814 r9827 27 27 #include "graphics/SColor.h" 28 28 #include "graphics/ShaderProgram.h" 29 #include "lib/ogl.h"30 29 #include "lib/res/handle.h" 31 30 #include "ps/Singleton.h" … … 235 234 236 235 // bind a GL texture object to active unit 237 void BindTexture(int unit, GLuint tex);236 void BindTexture(int unit, unsigned int tex); 238 237 239 238 // load the default set of alphamaps. -
ps/trunk/source/scriptinterface/ScriptTypes.h
r9213 r9827 21 21 #ifdef _WIN32 22 22 # define XP_WIN 23 # define WIN32 // SpiderMonkey expects this 23 # ifndef WIN32 24 # define WIN32 // SpiderMonkey expects this 25 # endif 24 26 25 27 // The jsval struct type causes crashes due to weird miscompilation … … 39 41 #include <cstring> // required by jsutil.h 40 42 43 // SpiderMonkey wants the DEBUG flag 44 #ifndef NDEBUG 45 # ifndef DEBUG 46 # define DEBUG 47 # endif 48 #endif 49 41 50 #include "js/jsapi.h" 42 51 -
ps/trunk/source/tools/atlas/AtlasScript/ScriptInterface.cpp
r9567 r9827 345 345 template bool ScriptInterface::FromJSVal<float>(JSContext*, jsval, float&); 346 346 template bool ScriptInterface::FromJSVal<CScriptVal>(JSContext*, jsval, CScriptVal&); 347 template bool ScriptInterface::FromJSVal<AtlasMessage::sObjectSettings>(JSContext*, jsval, AtlasMessage::sObjectSettings&);348 347 template jsval ScriptInterface::ToJSVal<wxString>(JSContext*, wxString const&); 349 template jsval ScriptInterface::ToJSVal<wxKeyEvent>(JSContext*, wxKeyEvent const&);350 template jsval ScriptInterface::ToJSVal<wxMouseEvent>(JSContext*, wxMouseEvent const&);351 348 template jsval ScriptInterface::ToJSVal<int>(JSContext*, int const&); 352 349 template jsval ScriptInterface::ToJSVal<float>(JSContext*, float const&);
Note:
See TracChangeset
for help on using the changeset viewer.
