diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2013-10-06 21:51:41 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2013-10-06 21:51:41 -0500 |
| commit | 26c38648ece6e27b4b98e61312fe2d383757b8a4 (patch) | |
| tree | 3e75bce8254c0c2ffa622dfb67a6bc3e2f82b17e /Source/Plugins/Plugin_VideoOGL/Src/ProgramShaderCache.cpp | |
| parent | a40daac5b14387a88d396f746a5298c39df76e34 (diff) | |
[Android] Missed a few things for PowerVR544MP3 'support.' It doesn't actually get any video output on it just like Tegra 4.
Diffstat (limited to 'Source/Plugins/Plugin_VideoOGL/Src/ProgramShaderCache.cpp')
| -rw-r--r-- | Source/Plugins/Plugin_VideoOGL/Src/ProgramShaderCache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Plugins/Plugin_VideoOGL/Src/ProgramShaderCache.cpp b/Source/Plugins/Plugin_VideoOGL/Src/ProgramShaderCache.cpp index a8360fa9c3..94b9502d2f 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/ProgramShaderCache.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/ProgramShaderCache.cpp @@ -576,8 +576,8 @@ void ProgramShaderCache::CreateHeader ( void ) , v==GLSLES2 ? "#define out " : "" , v==GLSLES2 ? "#define ocol0 gl_FragColor" : "" , v==GLSLES2 ? "#define ocol1 gl_FragColor" : "" - , v==GLSLES2 ? "#extension GL_NV_uniform_buffer_object : enable" : "" - , v==GLSLES2 ? "#extension GL_NV_fragdepth : enable" : "" + , DriverDetails::HasBug(DriverDetails::BUG_ISTEGRA) ? "#extension GL_NV_uniform_buffer_object : enable" : "" + , DriverDetails::HasBug(DriverDetails::BUG_ISTEGRA) ? "#extension GL_NV_fragdepth : enable" : "" , v==GLSLES2 ? "" : "out vec4 name;" ); } |
