diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2012-12-29 21:50:07 -0600 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2012-12-29 21:50:07 -0600 |
| commit | b4f30e549e033f27fa38b45a2b1d152a301c0813 (patch) | |
| tree | f6cae7dac2f11fe22e67cc2298e9c11e998565ce /Source/Plugins/Plugin_VideoSoftware | |
| parent | 539bf405f2df07e84ac0d549c4553d0b1435d231 (diff) | |
Missed a precision qualifier in a HWRasterizer shader.
Diffstat (limited to 'Source/Plugins/Plugin_VideoSoftware')
| -rw-r--r-- | Source/Plugins/Plugin_VideoSoftware/Src/HwRasterizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Plugins/Plugin_VideoSoftware/Src/HwRasterizer.cpp b/Source/Plugins/Plugin_VideoSoftware/Src/HwRasterizer.cpp index dba6f7f12c..a5609f51b2 100644 --- a/Source/Plugins/Plugin_VideoSoftware/Src/HwRasterizer.cpp +++ b/Source/Plugins/Plugin_VideoSoftware/Src/HwRasterizer.cpp @@ -62,7 +62,7 @@ namespace HwRasterizer "}\n"; // Clear shader static const char *fragclearText = - "uniform vec4 Color;\n" + "uniform " PREC " vec4 Color;\n" "void main() {\n" " gl_FragColor = Color;\n" "}\n"; |
