The OpenGL ES Shading Language (also known as GLSL ES or ESSL) is based on the OpenGL Shading Language (GLSL) version 1.20.
0
votes
1answer
16 views
length() in GLSL bug on Samsung Galaxy S3
I made a shader in GLSL for an android game.
In this shader I have to compute the length between the current pixel and the center of the FX
This shader contain these lines :
//compute distance ...
0
votes
0answers
4 views
GLSL ES 1.0 integer precision when casting from float
I was writing a GLSL ES code for skinning animation. Bone matrix index must be specified in int, and GLSL ES 1.0 have no way to pass int on vertex attribute. So I wanted to use float, and then I ...
0
votes
1answer
51 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
1answer
23 views
GLSL ES 2.0 - Alternative for UBO?
From what I've read of the invariant keyword for GLSL ES 2.0, it sounds kind of like something which could be considered synonymous with the functionality provided by a uniform buffer object, in the ...
0
votes
0answers
71 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 ...
1
vote
1answer
72 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 ...
1
vote
1answer
28 views
Does OpenGL (and OpenGL ES) support preprocessor “line continuation” characters?
I've got a macro in my OpenGL ES fragment shader that looks like this:
#define CHECK(x, DELTA, outColor, c1, c2) \
if (x < (delta + (DELTA))) { \
outColor = mix(c1, c2, smoothstep(delta, ...
0
votes
1answer
44 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
0answers
42 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
1answer
56 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
0answers
34 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
26 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
1answer
49 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
0answers
20 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 ...
3
votes
1answer
193 views
Why does my implementation of a displacement map in Three.js disconnect vertices at the poles of a sphere?
I am trying to create an asteroid by applying a displacement map with perlin noise to a sphere. Everything works as expected except that the poles of the sphere are distorted. It looks like as if the ...
0
votes
0answers
29 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
29 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 ...
1
vote
0answers
51 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) {
...
0
votes
2answers
219 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
...
0
votes
1answer
45 views
OpenGLES2 Failing to render bitmap
This is developing a mobile application using OpenGLES2.0 on the android platform (against API 8, if it makes any difference).
I'm attempting to add a UI layer over my currently working rendering ...
6
votes
3answers
385 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
vote
1answer
200 views
Opengl ES 2.0: parts of a model are occluded where they shouldn't. Is z-buffer to blame?
I'm using Assimp to render 3D models with OpenGL ES 2.0. I'm currently having a strange problem in which some parts of the model are not visible, even when they should be. It's easy to see it in these ...
0
votes
0answers
120 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 ...
-1
votes
1answer
51 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
1answer
51 views
Objective-C GLSL mix() equivalent
I`m trying to figure out how to write a equivalent to GLSL(ES)s mix method. I tried to add/divide rgb Values but with no luck yet. Any pointer to how the GLSL method works would be welcome.
0
votes
0answers
78 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
1answer
109 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 ...
4
votes
2answers
204 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 ...
1
vote
1answer
204 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 ...
1
vote
0answers
111 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 ...
2
votes
1answer
76 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
121 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. ...
3
votes
2answers
580 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 ...
1
vote
1answer
240 views
GLSL Shader Error on Mac, but not Windows: cannot convert from 'const int' to '4-component vector of float'
I'm new to shaders and I started playing around with some of them yesterday. They compile fine on my Windows PC, but when they're ran on Mac, there is an error for both:
ERROR: 0:14: '=' : ...
2
votes
0answers
100 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 ...
0
votes
1answer
295 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 ...
6
votes
0answers
263 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
1answer
367 views
Passing variables between GLSLES vertex & fragment shaders
Whenever I look at sample shaders, it seems this type of stuff happens almost by magic; sometimes information is saved into special places like position/color, but other times a fragment shader uses ...



