Tagged Questions
3
votes
1answer
51 views
Setting Up GLSL Ocean Water Shader Following Nvidia GPU Gems Chapter 1
I am following the Nvidia GPU Gems Chapter 1 regarding water simulation using shaders. I am trying to follow the chapter to create an ocean water shader using glsl in OpenGL es 2.0 (iOS).
I am able ...
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
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
2answers
50 views
Getting the color of the back buffer in GLSL
I am trying to extract the color behind my shader fragment. I have searched around and found various examples of people doing this as such:
vec2 position = ( gl_FragCoord.xy / u_resolution.xy );
vec4 ...
3
votes
2answers
223 views
Android OpenGL ES 2.0: Is “switch-case” syntax possible in GLSL fragment shader on Samsung Galaxy S2?
Does anybody know how to do switch case syntax in the fragment shader on the Samsung Galaxy S2? I get the compilation error: Expected literal or '(', got 'switch'.
My syntax is as follows:
...
1
vote
0answers
37 views
GLSL (iOS) function parameters not working correctly?
texture color passed to function is not working inside a loop?
I am really confused about this, the first code is working, the second is not. does someone has an explanation for this behaviour? By ...
0
votes
0answers
40 views
NVIDIA Cg Compiler Error C1307
When I try to use Cg to compile the following shader (a valid webGL shader):
attribute vec3 position;
attribute vec3 normal;
uniform mat4 modelMatrix;
uniform mat4 viewMatrix;
uniform mat4 ...
3
votes
1answer
113 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 ...
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
0answers
35 views
What does the w value of the GL_Positions' vec4 stand for?
Writing some GLSL and noticed the return value in my Vertex shader is a vec4 when Im retuning a x,y,z coordinate. I don't believe it to be alpha, and reading on the web its got something to do with ...
0
votes
1answer
39 views
Is a varying a pixel?
I am writing a Fragment shader for an Open GL ES application, and Im trying to clarify the difference between a Pixel and a Varying?
0
votes
1answer
39 views
Can OpenGL shader compilers optimize expressions on uniforms?
I've got an OpenGL ES shader with some uniforms in it. I do some math on the uniforms in my fragment shader. Will the shader compiler generally optimize those expressions on the uniforms so they ...
0
votes
0answers
56 views
trying to re-create a new GLSL progam fails after first program failed
I'm trying to use two different shaders on android depending on the shader language version and API version. My idea is to try to compile first the more efficient shader which requires dynamic ...
0
votes
2answers
169 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
...
4
votes
1answer
188 views
Opengl shader problems - weird light reflection artifacts
I've been wrestling with this for days. I think I've finally narrowed it down to a problem with the per vertex tangents, but I'm not sure the best way to fix it.
Context is iPhone app, opengl es2 ...
1
vote
1answer
121 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 ...
6
votes
1answer
136 views
What are shadow samplers in OpenGL and what are possible uses for them?
I have been working with this ES extension for a while, but I still don't quite get what these shadows samplers are and what one could use them for. Googling didn't really get me any nice, readable ...
0
votes
2answers
313 views
Drawing Textures Using OpenGL ES2.0 (or how to use GPU for YUV -> RGB)
I'm trying to use OpenGL for the first time under iOS in an attempt to render a stream of YUV images by converting them to RGB. I've looked around and found some examples here and there, and I'm ...
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;
...
1
vote
1answer
102 views
get the view coordinate in a point sprite
If you pass a varying view-space position from the vertex shader to a fragment shader then the fragment shader can know the fragment's position relative to the camera (0,0,0 in view-space). This is ...
0
votes
1answer
68 views
Using single shader for texturing points and triangles openGL ES 2
As far as i can tell to map a point you use
gl_FragColor = texture2D(Texture, gl_PointCoord);
And to map a triangle
gl_FragColor = texture2D(Texture, TexCoorFromVertexShader);
So if i want ...
2
votes
1answer
153 views
GPUImage two-pass filter - second frag shader never runs?
It's my impression (and the answer to this question seems to confirm it) that I can subclass from GPUImageTwoPassFilter to effectively run two fragment shaders in succession on an image but keep all ...
2
votes
2answers
196 views
Does the input texture to a fragment shader change as the shader runs?
I'm trying to implement the Atkinson dithering algorithm in a fragment shader in GLSL using our own Brad Larson's GPUImage framework. (This might be one of those things that is impossible but I don't ...
2
votes
2answers
342 views
What does the target--GL_ARRAY_BUFFER mean in glBindBuffer?
I was confused about the VBO,
glGenBuffers(1, &positionBufferObject);
glBindBuffer(GL_ARRAY_BUFFER, positionBufferObject);
Besides GL_ARRAY_BUFFER, there are other target types: ...
0
votes
0answers
150 views
On android ,How to implements translucent materials by GLSL?
As 3d software (3dmax, maya) handles the translucent materials such as jade, wax
Mostly through coloring shader (material ball).in opengl es 2.0,If I want to achieve
the same effect of the ...
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 ...
0
votes
0answers
201 views
OpenGL ES 2.0 GLSL Mat4 in Uniform Struct doesn't work?
I am building a Native Activity App for Android 2.3+. It seems Samsung Galaxy S3 OpenGL ES 2.0 GLSL Shader does not use my mat4 Uniform struct variables correctly! A GLSL Example:
struct SceneStruct ...
1
vote
1answer
174 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
1answer
243 views
OpenGL: GLSL float has low precision
I have float alpha texture that contains amplitude values. It is converted to decibels and displayed in grayscale.
Here is conversation code (C++) :
const float db_min = -100, db_max = 0;
float ...
5
votes
1answer
197 views
Android and Planet Rendering
I am learning how to do 3D development on android. I started with a simple rotating planet with some clouds. I have spent past 2 days trying to get atmospheric glow added to the planet. I looked ...
0
votes
0answers
62 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 ...
1
vote
0answers
238 views
webgl glsl emulate texture3d
I'm porting a piece of opengl to webgl and i'm trying to emulate texture3d. Somehow something is going wrong.
No interpolation is needed because it is only used for calculations. I'm not sure about ...
5
votes
1answer
467 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 ...
-1
votes
1answer
213 views
Is it possible to convert/export my 3D model (dae/blend/3ds/…) into GLSL ES 2.0?
Is it possible to export or convert my 3D models into GLSL ES 2.0? Is there any converter or any exporter tool/addon existing for any editor programs like Blender/3DS MAX/Maya that creates GLSL ES 2.0 ...
2
votes
1answer
124 views
How to decide if a fragment's color is white or not?
I have many circles next to each other in my scene (white circles and circles with different colors). I would like to blur the white circles only. (White means (1,1,1) in my case.)
My question is: ...
0
votes
1answer
288 views
Hardcoding GLSL texture sampler2D
In my fragment shader, I have the line
gl_FragColor = texture2D(texture, destinationTextureCoordinate) * destinationColor;
Where texture is a uniform of type sampler2D. In my code , I always set ...
2
votes
2answers
517 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
171 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
110 views
Can I access gl_PointCoord in a vertex shader?
gl_PointCoord returns the 2D vector representing the UV mapping coordinates at that pixel. But it appears to be only available in the fragment shader. I know that you can send values from the vertex ...
2
votes
1answer
205 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
264 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
262 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
818 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 ...
0
votes
2answers
109 views
Random “location not for current program” error
I have an issue with WebGL.
Sometimes, when I add a new shader to my application, I start to get uniform4f: location not for current program error (displayed in Chrome console) every frame when I set ...
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 ...
0
votes
1answer
221 views
Is multiple calls to glDrawElements more efficient than doing the same calculations per-fragment in GLSL?
I'm experimenting with GLSL (in iOS) and I wrote a simple shader that takes a colour value and parameters for two circles (center, radius, and edgeSmoothing). It is drawn using a single quad over the ...
2
votes
1answer
411 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 ...
