About Store Forum Documentation Contact



Post Reply 
Hi, I'm getting errors in my linux install.
Author Message
andreamillspaugh Offline
Member

Post: #1
Hi, I'm getting errors in my linux install.
Hi when I clicked the program I get this message.

Code:
Error accessing ShaderTech "Draw2DFlat" in Shader "Main".
Vertex Shader compilation failed:
Vertex Shader code:
#ifdef GL_ES
precision highp float;
precision highp int;
#endif
#ifdef GL_ES
#define HP highp
#define MP mediump
#define LP lowp
#else
#define HP
#define MP
#define LP
#endif
vec4 _ret_0;
attribute vec4 ATTR0;
uniform vec4 _Coords;
void main()
{
vec2 _TMP9;
_TMP9=ATTR0.xy*_Coords.xy+_Coords.zw;
_ret_0=vec4(_TMP9.x,_TMP9.y,0.00000000E+000,1.00000000E+000);
gl_Position=_ret_0;
return;
}
Pixel Shader compilation failed:
Pixel Shader code:
#extension GL_ARB_shader_texture_lod:enable
#extension GL_EXT_shader_texture_lod:enable
#ifdef GL_ES
precision lowp float;
precision lowp int;
#define texture2DLod texture2DLodEXT
#endif
#ifdef GL_ES
#define HP highp
#define MP mediump
#define LP lowp
#else
#define HP
#define MP
#define LP
#endif
vec4 _ret_0;
uniform vec4 _Color[4];
void main()
{
_ret_0=_Color[0];
gl_FragColor=_Color[0];
return;
}

What dose this mean.
10-19-2014 12:10 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: Hi, I'm getting errors in my linux install.
Hi,

Depending on your Gpu you could upgrade your graphics driver.
I've heard Intel is poor on Linux, while nvidia may work.
10-19-2014 01:22 AM
Find all posts by this user Quote this message in a reply
andreamillspaugh Offline
Member

Post: #3
RE: Hi, I'm getting errors in my linux install.
Hi, sorry about that I did not update my video drivers smile
10-19-2014 01:52 AM
Find all posts by this user Quote this message in a reply
Post Reply