0
votes
1answer
29 views

Webgl GLSL / Open GL ES 2.0

I'm curently porting an engine written for android and IOS devices using OpenGLES 2.0 to webgl and I stumbled uppon a problem using shaders. Most of the shaders written for the mobile app doesn't work ...
0
votes
0answers
36 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
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
2answers
166 views

Writing to gl_FragColor causes glUseProgram to throw GL_INVALID_OPERATION

I'm trying to write a blur filter in GLSL ES 2.0 and I'm getting an Error with the line assigning gl_FragColor. I've not been able to figure out why #extension GL_OES_EGL_image_external : require ...
6
votes
3answers
356 views

Android Openg GL ES 2 drawing big textures slow

I am very new to OpenGL. I am trying to draw textured quads (2 triangles). The size of texture is 900x900px. I have no problems with one quad but when I trying to draw 5-10 quads I see noticable slow ...
-1
votes
1answer
42 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 ...
0
votes
0answers
69 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. ...
1
vote
1answer
172 views

texture atlas tiling

i'm trying simple texture splatting on ios opengl es 2.0 (ipad). I have 4 tiled textures in pvrt compressed atlas (2x2 tiles). 4 single textures on 4 texture units was terribly slow. vertex ...
4
votes
2answers
171 views

Is compiling a shader during rendering a good / valid practice in OpenGL ES?

System: Android 4.03, OpenGL ES 2.0 Problem: When glAttachShader is invoked after the first frame has already been rendered with another program / shader, some devices (Galaxy S3) crash with a ...
2
votes
1answer
74 views

Can we mipmap depth textures?

I wanted to know, is it possible to mipmap a depth texture. If, yes then how it will work and were to use it. Search a lot, but didn't get good explanation anywhere.
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. ...
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 ...
3
votes
2answers
475 views

Coordinate Picking with OpenGL ES 2.0

i try to implement a coordinate picking function with OpenGL ES 2.0. I cannot implement the two versions i've implemented in my desktop version. Version 1 is to render every triangle in a unique ...