Skip to content

Commit

Permalink
Rename d3dshader.* -> d3d9shader.*
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfonseca committed May 13, 2012
1 parent a27e272 commit 41a6d89
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions wrappers/CMakeLists.txt
Expand Up @@ -64,7 +64,7 @@ if (WIN32)
${CMAKE_SOURCE_DIR}/specs/winapi.py
${CMAKE_SOURCE_DIR}/specs/stdapi.py
)
add_library (d3d8trace MODULE d3d8.def d3d8trace.cpp d3dshader.cpp)
add_library (d3d8trace MODULE d3d8.def d3d8trace.cpp d3d9shader.cpp)
target_link_libraries (d3d8trace
common
${ZLIB_LIBRARIES}
Expand Down Expand Up @@ -94,7 +94,7 @@ if (WIN32)
${CMAKE_SOURCE_DIR}/specs/winapi.py
${CMAKE_SOURCE_DIR}/specs/stdapi.py
)
add_library (d3d9trace MODULE d3d9.def d3d9trace.cpp d3dshader.cpp)
add_library (d3d9trace MODULE d3d9.def d3d9trace.cpp d3d9shader.cpp)
target_link_libraries (d3d9trace
common
${ZLIB_LIBRARIES}
Expand Down
2 changes: 1 addition & 1 deletion wrappers/d3d8trace.py
Expand Up @@ -44,7 +44,7 @@ def serializeArgValue(self, function, arg):
print
print '#include <windows.h>'
print '#include <d3d8.h>'
print '#include "d3dshader.hpp"'
print '#include "d3d9shader.hpp"'
print
print '#include "trace_writer_local.hpp"'
print '#include "os.hpp"'
Expand Down
2 changes: 1 addition & 1 deletion wrappers/d3dshader.cpp → wrappers/d3d9shader.cpp
Expand Up @@ -27,7 +27,7 @@

#include <stdio.h>

#include "d3dshader.hpp"
#include "d3d9shader.hpp"
#include "d3d9imports.hpp"
#include "d3dsize.hpp"

Expand Down
6 changes: 3 additions & 3 deletions wrappers/d3dshader.hpp → wrappers/d3d9shader.hpp
Expand Up @@ -24,8 +24,8 @@
*
**************************************************************************/

#ifndef _D3DSHADER_HPP_
#define _D3DSHADER_HPP_
#ifndef _D3D9SHADER_HPP_
#define _D3D9SHADER_HPP_


#include <windows.h>
Expand All @@ -35,4 +35,4 @@
void DumpShader(trace::Writer &writer, const DWORD *tokens);


#endif /* _D3DSHADER_HPP_ */
#endif /* _D3D9SHADER_HPP_ */
2 changes: 1 addition & 1 deletion wrappers/d3d9trace.py
Expand Up @@ -77,7 +77,7 @@ def implementWrapperInterfaceMethodBody(self, interface, base, method):
print
print '#include "d3d9imports.hpp"'
print '#include "d3dsize.hpp"'
print '#include "d3dshader.hpp"'
print '#include "d3d9shader.hpp"'
print
print '''
static inline size_t
Expand Down

0 comments on commit 41a6d89

Please sign in to comment.