diff options
| author | Shawn Hoffman <godisgovernment@gmail.com> | 2011-12-26 02:58:52 -0500 |
|---|---|---|
| committer | Shawn Hoffman <godisgovernment@gmail.com> | 2011-12-26 02:58:52 -0500 |
| commit | 5f296d0be7ef76f28bf6b0025c19c5a553177635 (patch) | |
| tree | 18177ece23ad6bc6fd13a9177188e394f23dff1b /Source/Plugins/Plugin_VideoOGL/Src/VertexShaderCache.cpp | |
| parent | 16f9d8e06dfd872141a055dd422a1666da34cd2a (diff) | |
refactor ProgramShaderCache::PCacheEntry
Diffstat (limited to 'Source/Plugins/Plugin_VideoOGL/Src/VertexShaderCache.cpp')
| -rw-r--r-- | Source/Plugins/Plugin_VideoOGL/Src/VertexShaderCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Plugins/Plugin_VideoOGL/Src/VertexShaderCache.cpp b/Source/Plugins/Plugin_VideoOGL/Src/VertexShaderCache.cpp index 59fcd6582e..f396e90078 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/VertexShaderCache.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/VertexShaderCache.cpp @@ -220,7 +220,7 @@ bool CompileGLSLVertexShader(VERTEXSHADER& vs, const char* pstrprogram) void SetVSConstant4fvByName(const char * name, unsigned int offset, const float *f, const unsigned int count = 1) { - PROGRAMSHADER tmp = ProgramShaderCache::GetShaderProgram(); + ProgramShaderCache::PCacheEntry tmp = ProgramShaderCache::GetShaderProgram(); for (int a = 0; a < NUM_UNIFORMS; ++a) { if (!strcmp(name, UniformNames[a])) |
