Index: code/client/cl_cin.c =================================================================== --- code/client/cl_cin.c (revision 1802) +++ code/client/cl_cin.c (working copy) @@ -994,6 +994,8 @@ cinTable[currentHandle].drawX = cinTable[currentHandle].CIN_WIDTH; cinTable[currentHandle].drawY = cinTable[currentHandle].CIN_HEIGHT; + // FIXME: Do people even care about rage pro/voodoo anymore? +#if 0 // rage pro is very slow at 512 wide textures, voodoo can't do it at all if ( glConfig.hardwareType == GLHW_RAGEPRO || glConfig.maxTextureSize <= 256) { if (cinTable[currentHandle].drawX>256) { @@ -1006,6 +1008,7 @@ Com_Printf("HACK: approxmimating cinematic for Rage Pro or Voodoo\n"); } } +#endif } /****************************************************************************** Index: code/client/cl_main.c =================================================================== --- code/client/cl_main.c (revision 1802) +++ code/client/cl_main.c (working copy) @@ -24,6 +24,8 @@ #include "client.h" #include +#include "../sys/sys_loadlib.h" + #ifdef USE_MUMBLE #include "libmumblelink.h" #endif @@ -2867,6 +2869,14 @@ return Sys_Milliseconds()*com_timescale->value; } +static cvar_t *cl_renderer = NULL; +static void *rendererLib = NULL; + +// Input subsystem +extern void IN_Init(void); +extern void IN_Shutdown(void); +extern void IN_Restart(void); + /* ============ CL_InitRef @@ -2875,9 +2885,47 @@ void CL_InitRef( void ) { refimport_t ri; refexport_t *ret; + GetRefAPI_t GetRefAPI; + char dllName[MAX_OSPATH]; Com_Printf( "----- Initializing Renderer ----\n" ); + cl_renderer = Cvar_Get("cl_renderer", "default", CVAR_ARCHIVE | CVAR_LATCH); + +#ifdef _WIN32 + Q_snprintf(dllName, sizeof(dllName), "renderer_%s" DLL_EXT, cl_renderer->string); +#else + Q_snprintf(dllName, sizeof(dllName), "renderer_%s" ARCH_STRING DLL_EXT, cl_renderer->string); +#endif + + Com_Printf("Loading \"%s\"...", dllName); + if((rendererLib = Sys_LoadLibrary(dllName)) == 0) + { +#ifdef _WIN32 + Com_Printf("failed:\n\"%s\"\n", Sys_LibraryError()); +#else + char fn[1024]; + + Q_strncpyz(fn, Sys_Cwd(), sizeof(fn)); + strncat(fn, "/", sizeof(fn) - strlen(fn) - 1); + strncat(fn, dllName, sizeof(fn) - strlen(fn) - 1); + + Com_Printf("Loading \"%s\"...", fn); + if((rendererLib = Sys_LoadLibrary(fn)) == 0) + { + Com_Error(ERR_FATAL, "failed:\n\"%s\"", Sys_LibraryError()); + } +#endif /* _WIN32 */ + } + + Com_Printf("done\n"); + + GetRefAPI = Sys_LoadFunction(rendererLib, "GetRefAPI"); + if(!GetRefAPI) + { + Com_Error(ERR_FATAL, "Can't load symbol GetRefAPI: '%s'", Sys_LibraryError()); + } + ri.Cmd_AddCommand = Cmd_AddCommand; ri.Cmd_RemoveCommand = Cmd_RemoveCommand; ri.Cmd_Argc = Cmd_Argc; @@ -2895,7 +2943,10 @@ #endif ri.Hunk_AllocateTempMemory = Hunk_AllocateTempMemory; ri.Hunk_FreeTempMemory = Hunk_FreeTempMemory; + + ri.CM_ClusterPVS = CM_ClusterPVS; ri.CM_DrawDebugSurface = CM_DrawDebugSurface; + ri.FS_ReadFile = FS_ReadFile; ri.FS_FreeFile = FS_FreeFile; ri.FS_WriteFile = FS_WriteFile; @@ -2905,7 +2956,9 @@ ri.FS_FileExists = FS_FileExists; ri.Cvar_Get = Cvar_Get; ri.Cvar_Set = Cvar_Set; + ri.Cvar_SetValue = Cvar_SetValue; ri.Cvar_CheckRange = Cvar_CheckRange; + ri.Cvar_VariableIntegerValue = Cvar_VariableIntegerValue; // cinematic stuff @@ -2915,6 +2968,10 @@ ri.CL_WriteAVIVideoFrame = CL_WriteAVIVideoFrame; + ri.IN_Init = IN_Init; + ri.IN_Shutdown = IN_Shutdown; + ri.IN_Restart = IN_Restart; + ret = GetRefAPI( REF_API_VERSION, &ri ); #if defined __USEA3D && defined __A3D_GEOM Index: code/client/cl_scrn.c =================================================================== --- code/client/cl_scrn.c (revision 1802) +++ code/client/cl_scrn.c (working copy) @@ -576,9 +576,9 @@ if( uivm || com_dedicated->integer ) { // XXX - extern cvar_t* r_anaglyphMode; + cvar_t* in_anaglyphMode = Cvar_Get("r_anaglyphMode", "", 0); // if running in stereo, we need to draw the frame twice - if ( cls.glconfig.stereoEnabled || r_anaglyphMode->integer) { + if ( cls.glconfig.stereoEnabled || in_anaglyphMode->integer) { SCR_DrawScreenField( STEREO_LEFT ); SCR_DrawScreenField( STEREO_RIGHT ); } else { Index: code/qcommon/q_platform.h =================================================================== --- code/qcommon/q_platform.h (revision 1802) +++ code/qcommon/q_platform.h (working copy) @@ -98,11 +98,14 @@ #define DLL_EXT ".dll" -#elif __WIN32__ +#elif defined(__WIN32__) || defined(_WIN32) #undef QDECL #define QDECL __cdecl +#undef QCALL +#define QCALL __stdcall + #if defined( _MSC_VER ) #define OS_STRING "win_msvc" #elif defined __MINGW32__ Index: code/renderer/tr_init.c =================================================================== --- code/renderer/tr_init.c (revision 1802) +++ code/renderer/tr_init.c (working copy) @@ -908,7 +908,7 @@ r_ignorehwgamma = ri.Cvar_Get( "r_ignorehwgamma", "0", CVAR_ARCHIVE | CVAR_LATCH); r_mode = ri.Cvar_Get( "r_mode", "3", CVAR_ARCHIVE | CVAR_LATCH ); r_fullscreen = ri.Cvar_Get( "r_fullscreen", "1", CVAR_ARCHIVE ); - r_noborder = Cvar_Get("r_noborder", "0", CVAR_ARCHIVE); + r_noborder = ri.Cvar_Get("r_noborder", "0", CVAR_ARCHIVE); r_customwidth = ri.Cvar_Get( "r_customwidth", "1600", CVAR_ARCHIVE | CVAR_LATCH ); r_customheight = ri.Cvar_Get( "r_customheight", "1024", CVAR_ARCHIVE | CVAR_LATCH ); r_customPixelAspect = ri.Cvar_Get( "r_customPixelAspect", "1", CVAR_ARCHIVE | CVAR_LATCH ); @@ -1176,9 +1176,13 @@ */ void RE_EndRegistration( void ) { R_SyncRenderThread(); + + // FIXME FIXME FIXME +#if 0 if (!Sys_LowPhysicalMemory()) { RB_ShowImages(); } +#endif } @@ -1188,7 +1192,7 @@ @@@@@@@@@@@@@@@@@@@@@ */ -refexport_t *GetRefAPI ( int apiVersion, refimport_t *rimp ) { +refexport_t* QCALL GetRefAPI ( int apiVersion, refimport_t *rimp ) { static refexport_t re; ri = *rimp; Index: code/renderer/tr_public.h =================================================================== --- code/renderer/tr_public.h (revision 1802) +++ code/renderer/tr_public.h (working copy) @@ -131,8 +131,11 @@ cvar_t *(*Cvar_Get)( const char *name, const char *value, int flags ); void (*Cvar_Set)( const char *name, const char *value ); + void (*Cvar_SetValue) (const char *name, float value); void (*Cvar_CheckRange)( cvar_t *cv, float minVal, float maxVal, qboolean shouldBeIntegral ); + int (*Cvar_VariableIntegerValue) (const char *var_name); + void (*Cmd_AddCommand)( const char *name, void(*cmd)(void) ); void (*Cmd_RemoveCommand)( const char *name ); @@ -141,6 +144,8 @@ void (*Cmd_ExecuteText) (int exec_when, const char *text); + byte *(*CM_ClusterPVS)(int cluster); + // visualization for debugging collision detection void (*CM_DrawDebugSurface)( void (*drawPoly)(int color, int numPoints, float *points) ); @@ -160,12 +165,17 @@ e_status (*CIN_RunCinematic) (int handle); void (*CL_WriteAVIVideoFrame)( const byte *buffer, int size ); + + // input event handling + void (*IN_Init)(void); + void (*IN_Shutdown)(void); + void (*IN_Restart)(void); } refimport_t; // this is the only function actually exported at the linker level // If the module can't init to a valid rendering state, NULL will be // returned. -refexport_t*GetRefAPI( int apiVersion, refimport_t *rimp ); +typedef refexport_t* (QCALL *GetRefAPI_t) (int apiVersion, refimport_t * rimp); #endif // __TR_PUBLIC_H Index: code/renderer/tr_subs.c =================================================================== --- code/renderer/tr_subs.c (revision 0) +++ code/renderer/tr_subs.c (revision 0) @@ -0,0 +1,51 @@ +#include "tr_local.h" + +void QDECL Com_Printf( const char *msg, ... ) +{ + va_list argptr; + char text[1024]; + + va_start(argptr, msg); + Q_vsnprintf(text, sizeof(text), msg, argptr); + va_end(argptr); + + ri.Printf(PRINT_ALL, "%s", text); +} + +void QDECL Com_DPrintf( const char *msg, ...) +{ + va_list argptr; + char text[1024]; + + va_start(argptr, msg); + Q_vsnprintf(text, sizeof(text), msg, argptr); + va_end(argptr); + + ri.Printf(PRINT_DEVELOPER, "%s", text); +} + +void QDECL Com_Error( int level, const char *error, ... ) +{ + va_list argptr; + char text[1024]; + + va_start(argptr, error); + Q_vsnprintf(text, sizeof(text), error, argptr); + va_end(argptr); + + ri.Error(level, "%s", text); +} + +float Q_acos(float c) { + float angle; + + angle = acos(c); + + if (angle > M_PI) { + return (float)M_PI; + } + if (angle < -M_PI) { + return (float)M_PI; + } + return angle; +} \ No newline at end of file Index: code/renderer/tr_world.c =================================================================== --- code/renderer/tr_world.c (revision 1802) +++ code/renderer/tr_world.c (working copy) @@ -547,7 +547,7 @@ byte *vis; leaf = R_PointInLeaf( p1 ); - vis = CM_ClusterPVS( leaf->cluster ); + vis = ri.CM_ClusterPVS( leaf->cluster ); leaf = R_PointInLeaf( p2 ); if ( !(vis[leaf->cluster>>3] & (1<<(leaf->cluster&7))) ) { Index: code/sdl/sdl_glimp.c =================================================================== --- code/sdl/sdl_glimp.c (revision 1802) +++ code/sdl/sdl_glimp.c (working copy) @@ -90,7 +90,7 @@ */ void GLimp_Shutdown( void ) { - IN_Shutdown(); + ri.IN_Shutdown(); SDL_QuitSubSystem( SDL_INIT_VIDEO ); screen = NULL; @@ -451,10 +451,10 @@ SDL_VideoDriverName( driverName, sizeof( driverName ) - 1 ); ri.Printf( PRINT_ALL, "SDL using driver \"%s\"\n", driverName ); - Cvar_Set( "r_sdlDriver", driverName ); + ri.Cvar_Set( "r_sdlDriver", driverName ); } - if (fullscreen && Cvar_VariableIntegerValue( "in_nograb" ) ) + if (fullscreen && ri.Cvar_VariableIntegerValue( "in_nograb" ) ) { ri.Printf( PRINT_ALL, "Fullscreen not allowed with in_nograb 1\n"); ri.Cvar_Set( "r_fullscreen", "0" ); @@ -673,7 +673,7 @@ r_allowResize = ri.Cvar_Get( "r_allowResize", "0", CVAR_ARCHIVE ); r_centerWindow = ri.Cvar_Get( "r_centerWindow", "0", CVAR_ARCHIVE ); - if( Cvar_VariableIntegerValue( "com_abnormalExit" ) ) + if( ri.Cvar_VariableIntegerValue( "com_abnormalExit" ) ) { ri.Cvar_Set( "r_mode", va( "%d", R_MODE_FALLBACK ) ); ri.Cvar_Set( "r_fullscreen", "0" ); @@ -681,16 +681,17 @@ ri.Cvar_Set( "com_abnormalExit", "0" ); } - Sys_SetEnv( "SDL_VIDEO_CENTERED", r_centerWindow->integer ? "1" : "" ); + // FIXME: see if this stuff is required, xreal doesn't use it + //Sys_SetEnv( "SDL_VIDEO_CENTERED", r_centerWindow->integer ? "1" : "" ); - Sys_GLimpInit( ); + //Sys_GLimpInit( ); // Create the window and set up the context if(GLimp_StartDriverAndSetMode(r_mode->integer, r_fullscreen->integer, r_noborder->integer)) goto success; // Try again, this time in a platform specific "safe mode" - Sys_GLimpSafeInit( ); + //Sys_GLimpSafeInit( ); if(GLimp_StartDriverAndSetMode(r_mode->integer, r_fullscreen->integer, qfalse)) goto success; @@ -734,7 +735,7 @@ ri.Cvar_Get( "r_availableModes", "", CVAR_ROM ); // This depends on SDL_INIT_VIDEO, hence having it here - IN_Init( ); + ri.IN_Init( ); } @@ -765,7 +766,7 @@ // Find out the current state fullscreen = !!( s->flags & SDL_FULLSCREEN ); - if( r_fullscreen->integer && Cvar_VariableIntegerValue( "in_nograb" ) ) + if( r_fullscreen->integer && ri.Cvar_VariableIntegerValue( "in_nograb" ) ) { ri.Printf( PRINT_ALL, "Fullscreen not allowed with in_nograb 1\n"); ri.Cvar_Set( "r_fullscreen", "0" ); @@ -783,9 +784,9 @@ { // SDL_WM_ToggleFullScreen didn't work, so do it the slow way if( !sdlToggled ) - Cbuf_AddText( "vid_restart" ); + ri.Cmd_ExecuteText(EXEC_APPEND, "vid_restart"); - IN_Restart( ); + ri.IN_Restart( ); } r_fullscreen->modified = qfalse; Index: code/sdl/sdl_input.c =================================================================== --- code/sdl/sdl_input.c (revision 1802) +++ code/sdl/sdl_input.c (working copy) @@ -70,6 +70,8 @@ static cvar_t *in_joystickThreshold = NULL; static cvar_t *in_joystickNo = NULL; +static cvar_t *in_fullscreen = NULL; + static int vidRestartTime = 0; #define CTRL(a) ((a)-'a'+1) @@ -465,7 +467,7 @@ } // in_nograb makes no sense in fullscreen mode - if( !r_fullscreen->integer ) + if( !in_fullscreen->integer ) { if( in_nograb->modified || !mouseActive ) { @@ -493,7 +495,7 @@ // Always show the cursor when the mouse is disabled, // but not when fullscreen - if( !r_fullscreen->integer ) + if( !in_fullscreen->integer ) SDL_ShowCursor( 1 ); if( !mouseAvailable ) @@ -524,9 +526,10 @@ SDL_WM_GrabInput( SDL_GRAB_OFF ); + // FIXME FIXME: This is probably required // Don't warp the mouse unless the cursor is within the window - if( SDL_GetAppState( ) & SDL_APPMOUSEFOCUS ) - SDL_WarpMouse( glConfig.vidWidth / 2, glConfig.vidHeight / 2 ); + //if( SDL_GetAppState( ) & SDL_APPMOUSEFOCUS ) + // SDL_WarpMouse( glConfig.vidWidth / 2, glConfig.vidHeight / 2 ); mouseActive = qfalse; } @@ -908,9 +911,9 @@ char width[32], height[32]; Com_sprintf( width, sizeof(width), "%d", e.resize.w ); Com_sprintf( height, sizeof(height), "%d", e.resize.h ); - ri.Cvar_Set( "r_customwidth", width ); - ri.Cvar_Set( "r_customheight", height ); - ri.Cvar_Set( "r_mode", "-1" ); + Cvar_Set( "r_customwidth", width ); + Cvar_Set( "r_customheight", height ); + Cvar_Set( "r_mode", "-1" ); /* wait until user stops dragging for 1 second, so we aren't constantly recreating the GL context while he tries to drag...*/ @@ -947,12 +950,12 @@ // If not DISCONNECTED (main menu) or ACTIVE (in game), we're loading loading = !!( cls.state != CA_DISCONNECTED && cls.state != CA_ACTIVE ); - if( !r_fullscreen->integer && ( Key_GetCatcher( ) & KEYCATCH_CONSOLE ) ) + if( !in_fullscreen->integer && ( Key_GetCatcher( ) & KEYCATCH_CONSOLE ) ) { // Console is down in windowed mode IN_DeactivateMouse( ); } - else if( !r_fullscreen->integer && loading ) + else if( !in_fullscreen->integer && loading ) { // Loading in windowed mode IN_DeactivateMouse( ); @@ -1004,6 +1007,8 @@ in_disablemacosxmouseaccel = Cvar_Get( "in_disablemacosxmouseaccel", "1", CVAR_ARCHIVE ); #endif + in_fullscreen = Cvar_Get("r_fullscreen", "", 0); + SDL_EnableUNICODE( 1 ); SDL_EnableKeyRepeat( SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL ); keyRepeatEnabled = qtrue; Index: misc/msvc/cgame.vcproj =================================================================== --- misc/msvc/cgame.vcproj (revision 1802) +++ misc/msvc/cgame.vcproj (working copy) @@ -1,10 +1,11 @@ @@ -105,9 +108,6 @@ Name="VCAppVerifierTool" /> - @@ -143,7 +143,7 @@ @@ -202,9 +204,6 @@ Name="VCAppVerifierTool" /> - @@ -277,6 +276,8 @@ MapFileName="$(IntDir)\cgamex86.map" SubSystem="2" BaseAddress="0x30000000" + RandomizedBaseAddress="1" + DataExecutionPrevention="0" ImportLibrary="$(IntDir)\cgamex86.lib" TargetMachine="1" /> @@ -299,9 +300,6 @@ Name="VCAppVerifierTool" /> - @@ -374,6 +372,8 @@ MapFileName="$(IntDir)\cgamex86.map" SubSystem="2" BaseAddress="0x30000000" + RandomizedBaseAddress="1" + DataExecutionPrevention="0" ImportLibrary="$(IntDir)\cgamex86.lib" TargetMachine="1" /> @@ -396,9 +396,6 @@ Name="VCAppVerifierTool" /> - Index: misc/msvc/game.vcproj =================================================================== --- misc/msvc/game.vcproj (revision 1802) +++ misc/msvc/game.vcproj (working copy) @@ -1,9 +1,10 @@ @@ -104,9 +107,6 @@ Name="VCAppVerifierTool" /> - @@ -142,7 +142,7 @@ @@ -201,9 +203,6 @@ Name="VCAppVerifierTool" /> - @@ -276,6 +275,8 @@ MapFileName="$(IntDir)\qagamex86.map" SubSystem="2" BaseAddress="0x20000000" + RandomizedBaseAddress="1" + DataExecutionPrevention="0" ImportLibrary="$(IntDir)\qagamex86.lib" TargetMachine="1" /> @@ -298,9 +299,6 @@ Name="VCAppVerifierTool" /> - @@ -373,6 +371,8 @@ MapFileName="$(IntDir)\qagamex86.map" SubSystem="2" BaseAddress="0x20000000" + RandomizedBaseAddress="1" + DataExecutionPrevention="0" ImportLibrary="$(IntDir)\qagamex86.lib" TargetMachine="1" /> @@ -395,9 +395,6 @@ Name="VCAppVerifierTool" /> - Index: misc/msvc/ioq3.sln =================================================================== --- misc/msvc/ioq3.sln (revision 1802) +++ misc/msvc/ioq3.sln (working copy) @@ -1,5 +1,5 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual C++ Express 2005 +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual C++ Express 2008 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cgame", "cgame.vcproj", "{C878E295-CB82-4B40-8ECF-5CE5525466FA}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "game", "game.vcproj", "{F9EE10DA-2404-4154-B904-F93C936C040A}" @@ -10,6 +10,8 @@ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ui", "ui.vcproj", "{A8EAC38E-C7DA-42F8-811D-77FD092B9D19}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "renderer_default", "renderer_default.vcproj", "{43022275-AD0E-40DD-9E7E-8B3411184F07}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug TA|Win32 = Debug TA|Win32 @@ -54,6 +56,14 @@ {A8EAC38E-C7DA-42F8-811D-77FD092B9D19}.Release TA|Win32.ActiveCfg = Release TA|Win32 {A8EAC38E-C7DA-42F8-811D-77FD092B9D19}.Release TA|Win32.Build.0 = Release TA|Win32 {A8EAC38E-C7DA-42F8-811D-77FD092B9D19}.Release|Win32.ActiveCfg = Release|Win32 + {43022275-AD0E-40DD-9E7E-8B3411184F07}.Debug TA|Win32.ActiveCfg = Debug|Win32 + {43022275-AD0E-40DD-9E7E-8B3411184F07}.Debug TA|Win32.Build.0 = Debug|Win32 + {43022275-AD0E-40DD-9E7E-8B3411184F07}.Debug|Win32.ActiveCfg = Debug|Win32 + {43022275-AD0E-40DD-9E7E-8B3411184F07}.Debug|Win32.Build.0 = Debug|Win32 + {43022275-AD0E-40DD-9E7E-8B3411184F07}.Release TA|Win32.ActiveCfg = Release|Win32 + {43022275-AD0E-40DD-9E7E-8B3411184F07}.Release TA|Win32.Build.0 = Release|Win32 + {43022275-AD0E-40DD-9E7E-8B3411184F07}.Release|Win32.ActiveCfg = Release|Win32 + {43022275-AD0E-40DD-9E7E-8B3411184F07}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE Index: misc/msvc/q3_ui.vcproj =================================================================== --- misc/msvc/q3_ui.vcproj (revision 1802) +++ misc/msvc/q3_ui.vcproj (working copy) @@ -1,9 +1,10 @@ @@ -105,9 +108,6 @@ Name="VCAppVerifierTool" /> - @@ -177,6 +177,8 @@ SuppressStartupBanner="true" ModuleDefinitionFile="q3_ui.def" ProgramDatabaseFile="$(IntDir)\uix86_old.pdb" + RandomizedBaseAddress="1" + DataExecutionPrevention="0" ImportLibrary="$(IntDir)\q3_ui.lib" TargetMachine="1" /> @@ -199,9 +201,6 @@ Name="VCAppVerifierTool" /> - @@ -239,7 +238,7 @@ Name="VCCLCompilerTool" Optimization="2" InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;Q3_UI_EXPORTS;_CRT_SECURE_NO_DEPRECATE" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;Q3_UI_EXPORTS;_CRT_SECURE_NO_DEPRECATE;STANDALONE" StringPooling="true" RuntimeLibrary="0" EnableFunctionLevelLinking="true" @@ -271,6 +270,8 @@ SuppressStartupBanner="true" ModuleDefinitionFile=".\q3_ui.def" ProgramDatabaseFile="$(IntDir)\uix86.pdb" + RandomizedBaseAddress="1" + DataExecutionPrevention="0" ImportLibrary="$(IntDir)\uix86.lib" TargetMachine="1" /> @@ -293,9 +294,6 @@ Name="VCAppVerifierTool" /> - @@ -332,7 +330,7 @@ @@ -391,9 +391,6 @@ Name="VCAppVerifierTool" /> - Index: misc/msvc/quake3.vcproj =================================================================== --- misc/msvc/quake3.vcproj (revision 1802) +++ misc/msvc/quake3.vcproj (working copy) @@ -1,9 +1,10 @@ - - - @@ -371,7 +369,7 @@ /> - + + + + + + + + + + + + + + - - - - @@ -2176,49 +2208,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: misc/msvc/ui.vcproj =================================================================== --- misc/msvc/ui.vcproj (revision 1802) +++ misc/msvc/ui.vcproj (working copy) @@ -1,9 +1,10 @@ @@ -104,9 +107,6 @@ Name="VCAppVerifierTool" /> - @@ -143,7 +143,7 @@ @@ -201,9 +203,6 @@ Name="VCAppVerifierTool" /> - @@ -241,7 +240,7 @@ Name="VCCLCompilerTool" Optimization="2" InlineFunctionExpansion="1" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;UI_EXPORTS;_CRT_SECURE_NO_DEPRECATE" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;UI_EXPORTS;_CRT_SECURE_NO_DEPRECATE;STANDALONE" StringPooling="true" RuntimeLibrary="0" EnableFunctionLevelLinking="true" @@ -275,6 +274,8 @@ GenerateMapFile="true" MapFileName="$(IntDir)\uix86_new.map" BaseAddress="0x40000000" + RandomizedBaseAddress="1" + DataExecutionPrevention="0" ImportLibrary="$(IntDir)\uix86_new.lib" TargetMachine="1" /> @@ -297,9 +298,6 @@ Name="VCAppVerifierTool" /> - @@ -373,6 +371,8 @@ GenerateMapFile="true" MapFileName="$(IntDir)\uix86.map" BaseAddress="0x40000000" + RandomizedBaseAddress="1" + DataExecutionPrevention="0" ImportLibrary="$(IntDir)\uix86.lib" TargetMachine="1" /> @@ -395,9 +395,6 @@ Name="VCAppVerifierTool" /> -