Skip to content
Snippets Groups Projects
Commit 004cc910 authored by David Parks's avatar David Parks
Browse files

SH-2240 Fix for OSX GLSL compiler not liking #ifndef gl_FragData

parent b0c1d877
No related branches found
No related tags found
No related merge requests found
Showing
with 16 additions and 16 deletions
......@@ -23,7 +23,7 @@
* $/LicenseInfo$
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -23,7 +23,7 @@
* $/LicenseInfo$
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -24,7 +24,7 @@
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -23,7 +23,7 @@
* $/LicenseInfo$
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -23,7 +23,7 @@
* $/LicenseInfo$
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -24,7 +24,7 @@
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -23,7 +23,7 @@
* $/LicenseInfo$
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -23,7 +23,7 @@
* $/LicenseInfo$
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -23,7 +23,7 @@
* $/LicenseInfo$
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -23,7 +23,7 @@
* $/LicenseInfo$
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -23,7 +23,7 @@
* $/LicenseInfo$
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -23,7 +23,7 @@
* $/LicenseInfo$
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -23,7 +23,7 @@
* $/LicenseInfo$
*/
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -25,7 +25,7 @@
#extension GL_ARB_texture_rectangle : enable
#ifndef gl_FragData
#ifdef DEFINE_GL_FRAGCOLOR
out vec4 gl_FragData[3];
#endif
......
......@@ -20,7 +20,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
* $/LicenseInfo$
* $/LicenseInfo$F
*/
......@@ -28,6 +28,6 @@
void fullbright_lighting();
void main()
{
{F
fullbright_lighting();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment