The OpenGL ES Shading Language (also known as GLSL ES or ESSL) is based on the OpenGL Shading Language (GLSL) version 1.20.

learn more… | top users | synonyms

0
votes
1answer
35 views

Very slow fract operation on Galaxy SII and SIII

My terrain uses shader which itself uses four different textures. It runs fine on windows and linux machines, but on android it gets only ~25FPS on both galaxies. I thought, that textures are the ...
0
votes
1answer
48 views

How are GLSL shader programs executed on the graphics hardware pipeline?

As I toy with OpenGL ES 2.0 and GLSL more and more, I'm questioning exactly how the shader programs are executed on the hardware. I understand the concepts behind vertex and fragment shader programs ...
0
votes
1answer
30 views

iPad Opengl ES program works fine on simulator but not device

For the device, all of my shaders load fine except one. For this shader program I get "Fragment program failed to compile with current context state" error, followed by a similar error for the vertex ...
0
votes
1answer
102 views

Animated texture coordinates not working

I am struggling to learn GLSL ES so that I can offload a bunch of my animation from CPU to the GPU. My issue is with the creation of a simple animated shader that uses a sprite sheet. The shader does ...
0
votes
1answer
262 views

Switching between Smooth Shading to Flat shading in Opengles 2.0

I am working for a 3d application in android using opengles 2.0 draw some model but those box-like model look too smooth with smooth shading and i need shade smooth for sphere model. I exported 3d ...
-1
votes
1answer
44 views

when is the indices of vertices determined to be used in gl_VertexID

I am trying to understand the behavior of gl_vertexID in vertex shaders. For that I am trying to render 2 squares using two glDrawArrays calls one after another. And want to apply red color to only ...
5
votes
0answers
246 views

GLSL-ES Random grainy noise with FP16 limit

I am trying to write a compact and simple noise function with a strictly FP16 limit. This is with what I came out so far, but I think somewhere on the operation the number gets too small for fract or ...
2
votes
0answers
97 views

fragment shader distance precision

I have a problem with my fragment shader. I want to implement per frament lighting in 2d. I use distance function to measure distance to light source. to It works fine if my object is near to origin ...
1
vote
0answers
47 views

WebGL/GLSL ES strange behaviour when changed useless (?) part of the code

I am writing some shader lighting computations for my WebGL application. WebGL uses GLSL ES. This is my Phong BRDF : float cosTheta = dot(L, N); vec3 R = reflect(L, N); if(cosTheta > 0.0) { ...
1
vote
0answers
98 views

possible glsl compiler bug on samsung galaxy tab 2?

This is an example taken from some real code. This doesn't compile on my Samsung Galaxy Tab 2: #define some_macro(x_) void some_function(vec4 some_arg some_macro(FOO)) { } The idea is that the ...
0
votes
0answers
32 views

webgl shadow mapping gl.DEPTH_COMPONENT

Hey im trying to implement shadow mapping in webgl using this example: tutorial What im trying to do is initialize the depth texture and framebuffer. draw a scene to that framebuffer with a simple ...
0
votes
0answers
37 views

OpenGL ES 2.0 texture not animating

I was wondering if anyone could help me as I cannot seem to get my texture to animate. I am trying to use my bump map to make a wave like effect. here is my vertex shader attribute highp vec3 ...
0
votes
0answers
29 views

Trouble with shadow maps

Im having a little trouble with shadow maps. I render the scene from the lights perspective using orthographic projection and store the depth in a texture (using the depth texture extension), then in ...
0
votes
0answers
17 views

converting ivec2 to vec2 in the vertex shader

In the vertex shader: in highp ivec2 a; ... void main(void) { ... highp vec2 coord = vec2(1.0, 1.0); ... coord = vec2(a.xy); ... Is coord = vec2(a.xy); a valid statement. Please ...
0
votes
0answers
17 views

blurring issue when rendering on my ipad?

I am trying to test blurring on pixel level on my ipad for development of a game. The original texture is the size of my screen(backbuffer) which is 2048*1496 and it exists out of horizontal lines of ...
0
votes
0answers
30 views

converting hybrid cg/hlsl shaders to glsl es

I am looking for a tool that can convert cg/hlsl hybrid shaders to glsl es shaders. I have tried hlsl2glsl which doesnt understand the keyword 'extern' although it is a viable hlsl keyword and have ...
0
votes
0answers
25 views

iphone OpenGLES glsl output

Recently I have been working on an algorithm which in it's base depends on the ability to detect lines in a texture (GLES texture). No I found out that the best approach for line detection in iphone ...
0
votes
0answers
25 views

ios - import using openframeworks and use it glview

Just a thought, is it possible to use openframeworks to import some 3d objects then pass it to glview from ios then mess with glsl? I am using of_ios_074 at the moment and based on further reading it ...
0
votes
0answers
103 views

Black screen on canvas when drawing with webgl

I am a WebGL/JS newbie facing a frustrating problem when drawing on canvas. I am trying to draw a cube on the canvas but all I am getting is a black screen. Can anybody help me figure out the problem ...
0
votes
0answers
71 views

GLSLES Losing 5-6ms using uniform float instead of e.g. 0.5

I have this fragment shader. On some "sprites" i want a different "saturation" of the texture. At the moment i only set it once but later i would set it each draw depending on the sprite beeing drawn. ...
0
votes
0answers
105 views

How does sampler2DArrayShadow in glsl works

I am not able understand how to use sampler2DAprrayShadows and how it works. Got some part of it that we need to use depth texture values (GL_DEPTH_COMPONENT) to get the compare result with ref depth. ...