- nothing is easy is windoze (renamed duplicate filename cause VC chokes on it)

This commit is contained in:
Mark Vejvoda
2010-09-16 22:47:33 +00:00
parent d798ef539d
commit a259e0d8e4
3 changed files with 12 additions and 8 deletions

View File

@@ -248,6 +248,10 @@
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx" Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}" UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
> >
<File
RelativePath="..\..\source\shared_lib\sources\platform\sdl\gl_wrap.cpp"
>
</File>
<File <File
RelativePath="..\..\source\win32_deps\src\glprocs.c" RelativePath="..\..\source\win32_deps\src\glprocs.c"
> >
@@ -491,10 +495,6 @@
RelativePath="..\..\source\shared_lib\sources\platform\common\cache_manager.cpp" RelativePath="..\..\source\shared_lib\sources\platform\common\cache_manager.cpp"
> >
</File> </File>
<File
RelativePath="..\..\source\shared_lib\sources\platform\sdl\gl_wrap.cpp"
>
</File>
<File <File
RelativePath="..\..\source\shared_lib\sources\platform\common\platform_common.cpp" RelativePath="..\..\source\shared_lib\sources\platform\common\platform_common.cpp"
> >
@@ -526,6 +526,10 @@
RelativePath="..\..\source\shared_lib\sources\platform\win32\factory_repository.cpp" RelativePath="..\..\source\shared_lib\sources\platform\win32\factory_repository.cpp"
> >
</File> </File>
<File
RelativePath="..\..\source\shared_lib\sources\platform\win32\gl_wrap_billy.cpp"
>
</File>
<File <File
RelativePath="..\..\source\shared_lib\sources\platform\win32\glob.c" RelativePath="..\..\source\shared_lib\sources\platform\win32\glob.c"
> >

View File

@@ -141,14 +141,14 @@ void PlatformContextGl::swapBuffers() {
} }
const char *getPlatformExtensions(const PlatformContextGl *pcgl) { const char *getPlatformExtensions(const PlatformContextGl *pcgl) {
return ""; return "";
} }
void *getGlProcAddress(const char *procName) { void *getGlProcAddress(const char *procName) {
void* proc = SDL_GL_GetProcAddress(procName); void* proc = SDL_GL_GetProcAddress(procName);
assert(proc!=NULL); assert(proc!=NULL);
return proc; return proc;
} }
}}//end namespace }}//end namespace