Hi, excuse me if this question
has already be done...
What's the GLES2/gl2.h equivalent for using
GLSL shading language ?
Is there another SDK, or I can use GLES as well ?
Thanks in advance,
Massimiliano
|
|
0
|
|
|
|
Reply
|
Developer1
|
10/31/2008 2:33:46 PM |
|
> Hi, excuse me if this question
> has already be done...
>
> What's the GLES2/gl2.h equivalent for using
> GLSL shading language ?
>
> Is there another SDK, or I can use GLES as well ?
In OpenGL 2.0, it's an extension. See this tutorial:
http://nehe.gamedev.net/data/articles/article.asp?article=21
GLSL is available right now through 4 extensions:
GL_ARB_shader_objects
GL_ARB_shading_language_100
GL_ARB_vertex_shader
GL_ARB_fragment_shader
--
------------------------------------
Gernot Frisch
http://www.glbasic.com
|
|
0
|
|
|
|
Reply
|
Gernot
|
11/4/2008 9:19:58 AM
|
|
Gernot Frisch ha scritto:
> In OpenGL 2.0, it's an extension. See this tutorial:
>
> http://nehe.gamedev.net/data/articles/article.asp?article=21
>
> GLSL is available right now through 4 extensions:
>
> GL_ARB_shader_objects
> GL_ARB_shading_language_100
> GL_ARB_vertex_shader
> GL_ARB_fragment_shader
Thank you, at last I used the GLEW library...that
at last just exploits those extensions!
max
|
|
0
|
|
|
|
Reply
|
Developer1
|
11/19/2008 2:35:59 PM
|
|