Tagged Questions
0
votes
1answer
26 views
Are point sprites always perfect circles/squares?
I noticed that regardless of the shape (aspect ratio) of a texture, it will always draw as a perfect square, scaling unequally, when using it as a point sprite. I assume this is because points are, ...
1
vote
1answer
22 views
When using the same Vertex shader in different programs, does the uniform location persist
sorry if this is a duplicate I can't seem to find a solid answer.
If i use the same vertex shader in multiple programs is it safe to assume the getUniformLocation will stay the same?
example, if i ...
1
vote
1answer
21 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
0answers
33 views
Texture not animating only showing blue quad
I am trying to move my texture coordinates however I am only getting a blue screen for some reason
here is what my quad looks like
I am not really sure what I am doing wrong
I have tried moving the ...
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 ...
1
vote
1answer
88 views
Multiple instances of shaders
I recently read that you can
"have multiple instances of OpenGL shaders"
but no other details were given on this.
I'd like some clarification as to what exactly this means.
For one, I know ...
3
votes
1answer
117 views
How to create multiple stop gradient fragment shader?
I'm trying to create an OpenGL ES 2.0 fragment shader that outputs multiple stop gradient along one axis. It should interpolate between multiple colors at points defined in percents.
I've achieved ...
0
votes
1answer
99 views
Sorting float array in fragment shader without dynamic branching in OpenGL ES (iPad)
We have a somewhat complicated fragment shader, which we cannot split into smaller shaders.
One of the thing the shader does is calculate the distance of the fragment/pixel to 7 other points, and ...
2
votes
0answers
73 views
iPhone GLSL dynamic branching issue
I am trying to pass an array of vec3 as uniform and then iterate through them on each pixel. The size of array varies on situations so I can't make the loop with constant number of iterations. ...
1
vote
1answer
125 views
Texture mapping of non-rectangle textures - how to get the color of a specific texel
I'm trying to convert a shader wich is written using GLSL version 120 into OpenGl ES 2.0 and I came to a problem on how to map this shader correctly.
On the original shader, I'm using texture2DRect ...
0
votes
0answers
66 views
Issue with Sphere + Lighting
I am drawing a sphere using following code :
GLfloat thita=0.0f,fy=0.0f;
GLfloat r=0.5f;
GLfloat light_direction[] = {1.0, 1.0, 1.0};
while(thita<=pi)
{
fy=0.0f;
...
2
votes
1answer
66 views
OpenGL es 2.0 and 16 bit channel
It possible to return 16 bit value from fragment shader on Android devices?
I've made this conversion to convert 16 bit "x" value to 4444:
vec4 convertToVec4(float x)
{
int iX = int(65535.0 * ...
0
votes
1answer
44 views
Static non-moving texture
I have a constantly moving from right to left plane with repeating texture on it. My goal is to make texture stay at constant position on screen while plane continues moving. How to do that using ...
1
vote
0answers
95 views
libGDX: how to tell if shader log refers to frag or vert shader error
After compiling a ShaderProgram if it doesn't compile I print the log.
However, I can't find a way to tell if the error is in the fragment or vertex shader.
Here I put an error in the frag shader:
...
0
votes
0answers
63 views
How to set a minimum size on a billboard?
I have a billboard displayed on top of an avatar. It works ok except for when you are too far away from it the text is too small. I would like to set a minimum size so it stays readable. I don't ...
5
votes
1answer
469 views
Adreno 220 GLSL bug
We experience issue with GLSL alpha testing on Sony Xperia S phone with Adreno 220 GPU. Device is running Android 4.0.4.
On Adreno 200, Adreno 205, Adreno 225 as well as Tegra2, Mali400 and PowerVR ...
0
votes
0answers
133 views
fwidth() tegra 3 glsl
This is result of this program rendering few quads on Tegra 3 device :
#extension GL_OES_standard_derivatives : enable
precision mediump float;
uniform sampler2D sampler2d; ...
2
votes
2answers
520 views
Floating point textures in OpenGL ES 2.0 on iOS without clamping them to [0, 1]
I need gl_FragColor to "paint" floating point values, which also can be negative (x < 0) and > 1.0. I then want to use the color attachement of the FBO this values where rendered to and use it as a ...
2
votes
1answer
173 views
GL_APPLE_shader_framebuffer_fetch gl_lastFragData
Apple introduced a new shader extension called GL_APPLE_shader_framebuffer_fetch, which allows fully programmable blending. There is also a wwdc video explaining the functionallity. It's the video 513 ...
1
vote
1answer
194 views
How to make shaders in qt compile & work like in es2 (iOS)?
I have a render engine that works on an iOS app.
I almost managed to make it work by calling the same openGL rendering engine from a qt(4.8) app with a QGLWidget. To support es2 function set my ...
1
vote
1answer
237 views
Shader attribute mat4 not binding correctly (Opengl ES 2.0 Android)
I have the following shader:
protected final static String vertexShaderCode =
"attribute vec4 vPosition;" +
"attribute vec2 texCoord;" +
"attribute mat4 uMVPMatrix; \n" +
"varying ...
1
vote
1answer
219 views
Implementation limit of active vertex shader samplers on the iPhone
I'm trying to use a sampler in a vertex shader on the iPhone. The documentation says that this is not supported on the PowerVR SGX. However, it seems that at least someone got it working in the ...
1
vote
1answer
76 views
Is it possible to get the data stored in a texture in opengl es 2.0
I am now writing a program to generate textures using GPU with the help of GL Shading Language. However, I am wondering whether it is possible for me to fetch the data stored in a texture and write it ...
3
votes
1answer
633 views
Opengl es 2.0 Custom shader low fps (android)
I'm making a simple application/wallpaper, that adds simple water ripple effect to background image.
I'm testing on HTC Desire (Android 2.2).
I have found this explanation of how this is done and ...
2
votes
1answer
207 views
Vertex Kaleidoscope shader
I'm attempting to translate a fragment shader into a vertex shader (for mobile optimisation)
As you can see in the image below, the vertices of the center and right edge are buggy. (This is a plane ...
0
votes
1answer
268 views
Output of vertex shader 'colorVarying' not read by fragment shader
As is shown below, the error is very strange. I use OpenGLES 2.0 and shader in my iPad program, but it seems something goes wrong with the code or project configuration. The model is drawn with no ...
2
votes
0answers
263 views
Adreno GPU - Fragment shader: texture2D in a function causes glLinkProgram to crash
we have a weird problem. A texture2D call is working when used directly but not when used in a function with a return value.
The device is a Samsung S3, SPH-L710, Android 4.0.4, Adreno 225.
The code ...
1
vote
0answers
828 views
lowp vs. mediump vs. highp in glsl? [closed]
I've been working for the past week on a custom shader. I had various strange issues that were not resolved until I switched almost all floating-point variables to highp.
However, today I discovered ...
0
votes
1answer
77 views
Is it possible to use all the 16 bits of a float to sample texture in GLSL
I am now trying to sample a texture using floating point vectors but I found that the floating point precision is only 2 ^ -10 bits and the resolution is very limited. So I am wondering whether it is ...
-2
votes
1answer
337 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 ...
0
votes
1answer
152 views
How to make GLSL treat transparent texture as white instead of black?
I'm learning GLSL with ES 2.0 and I'm trying to write a glow fragment shader.
This is what I have right now:
for(float x = startX; x < endX; x += w) {
for(float y = startY; y < endY; y += ...
0
votes
1answer
85 views
Is it possible to process a FBO's color attachement (texture) using a fragment/pixel shader without vertex shader?
Im currently playing around with some terrain-generation stuff using OpenGL ES 2.0 on iOS devices. I have a texture and a heightmap. What I want to do is blur the terrain's texture using a fragment ...
3
votes
1answer
192 views
How to sample large texture in OpenGL ES 2.0 for Android
I am now trying to use a fragment shader to process images on a texture. However, I found that only 10 bits float is supported by the fragment shader so when the length of the screen is 1280 pixels, I ...
2
votes
1answer
417 views
Handling GL_RGBA and GL_ALPHA textures with the same shader?
So my application uses mostly rgba textures for rendering, but in a few cases I use alpha masks for things like rendering text.
I'd like the output of my fragment shader to be the value of the ...
2
votes
4answers
365 views
Loss of precision in GLSL fragment shader
I am now using opengl-es and I use the gl shading language. I hope to render to texture but I found a loss of precision. For example, when I write a float value of 0.5 to the texture, I found the ...
2
votes
1answer
232 views
Vertex attributes not being passed to shader
I've just switched my code over to using a separate shader instead of passing a boolean uniform to decide which algorithm to use. Unfortunately, after vigorous testing, I've discovered that one of the ...
4
votes
1answer
279 views
Is it possible to warp the underlying image with OpenGL ES 2.0?
I have an Android 4.0 application that uses the GL_OES_EGL_image_external method of rendering video as an OpenGL surface. That works great. In addition, I would like to stretch/warp a few patches on ...
1
vote
1answer
286 views
2D geometry outline shader
I want to create a shader to outline 2D geometry. I'm using OpenGL ES2.0. I don't want to use a convolution filter, as the outline is not dependent on the texture, and it is too slow (I tried ...
1
vote
1answer
68 views
Can I know which triangle I am working on from within the fragment shader?
I'm drawing a medium-to-large object with somewhere between 100 and maybe 2500 triangular faces, depending on some options the user picked earlier. The object itself is fixed-- doesn't move, doesn't ...
4
votes
1answer
485 views
Device/OS inconsistencies in GLSL ES Phong shader results
Apple's Best Practices for OpenGL ES recommend against branching on results calculated in a fragment shader. But Phong shading generally involves skipping the specular term when the light source is on ...
1
vote
1answer
250 views
GLSL: is it possible to create mask of one-colored area which contains central pixel?
I want to create effect like "Magic Wand" in Photoshop for central pixel of screen with GLSL shaders in my iPhone app (capturing image from camera). Now I've made this by getting array of pixels and ...
6
votes
1answer
362 views
Drawing to FBO - sprite inverted up and down issue
Well, usage of FBO is wide and it helps make complex effects much easier. I set FBO and draw to it, then render FBO textured quad, without any problem, even test simple screen processing color shader. ...
2
votes
1answer
939 views
Multi-pass shaders in OpenGL ES 2.0
First - Does subroutines require GLSL 4.0+? So it unavailable in GLSL version of OpenGL ES 2.0?
I quite understand what multi-pass shaders are.
Well what is my picture:
Draw group of something ...
1
vote
1answer
675 views
Non predefined multiple light sources in OpenGL ES 2.0
There is a great article about multiple light sources in GLSL
http://en.wikibooks.org/wiki/GLSL_Programming/GLUT/Multiple_Lights
But light0 and light1 parameters described in shader code, what if must ...
0
votes
0answers
91 views
Interpolate position from given matrix
I have a mesh composed by numerous vertices (more then 400, less than 1000).
The vertices are simply disposed on 2 parallel line, so that every vertices on a line have the y component equal to the ...
1
vote
2answers
1k views
Simple GLSL convolution shader is atrociously slow
I'm trying to implement a 2D outline shader in OpenGL ES2.0 for iOS. It is insanely slow. As in 5fps slow. I've tracked it down to the texture2D() calls. However, without those any convolution shader ...
-1
votes
1answer
222 views
How do I use GLSL shader to access each pixel and get its RGB value? [closed]
How do I use GLSL shader to access each pixel and get its RGB value?
I m working on an Xcode Project on iOS.
When I use a GLSL shader to load an image as a texture,
how do I access each pixel and ...
1
vote
1answer
419 views
Issue with shader execution flow on PowerVR GPU
I've encountered a problem which I believe is related to optimization of GLSL compilation of PowerVR GPUs. On Adreno and Tegra GPUs fragment shader works just fine, but on PowerVR (Motorola Droid) it ...
3
votes
2answers
375 views
Why does GLSL's arithmetic functions yield so different results on the iPad than on the simulator?
I'm currently chasing some bugs in my OpenGL ES 2.0 fragment shader code which is running on iOS devices. The code runs fine in the simulator, but on the iPad it has huge problems and some of the ...
1
vote
1answer
184 views
Aliassing when flipping a texture in fragment shader
I've created a multi-texture fragment shader in which I want to flip one of the textures but when doing this my texture gets all jaggy. Is there a solution to this problem?
This is my fragment ...


