Tagged Questions
0
votes
1answer
38 views
Shader doesn't work - OpenGL ES
I have created a program that allows me to display 3D objects and now I want to make a cut in relation to another object. Here is my result : screen.
The screen shows that we can see through the cut ...
1
vote
0answers
30 views
Update texture in fragment shader in Cocos2d
I'm trying to update texture in fragment shader without any luck. Looks like shader reads texture just once and then no updates. Here is my code:
Shader init
CCGLProgram *shader = [[CCGLProgram ...
0
votes
1answer
28 views
How to get the color of a pixel on the screen for Shader (Open GL ES 2,0)
I use this simple Shader for texture mapping in Open GL ES 2.0
I need to add the code for the Overlay Blending Mode.
The Algorithm I understand everything.
But how to obtain the color of a pixel on ...
1
vote
0answers
39 views
Sparkles and shine cocos2d shader
I have started to work with shaders(cocos2d 2.1) and trying to make sparkles and glossy moving effect like in this game:
game with cool shiny effects
There are a couple of issues with that:
Is there ...
3
votes
1answer
61 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 ...
-1
votes
0answers
19 views
spontaneous pixellation of textures at low fps when using per pixel shading in android
In my live wallpaper I'm using per pixel displacement (opengl es 2.0 shader) using a map to make a realistic waterfalls. it runs smoothly most of the times but when phone is using more app the live ...
-1
votes
0answers
17 views
opengles 2.0 shader for bone animation
I already know about the skeletal animation
But I want to know when to implement it in the android
How specific calculation should be distributed on the CPU or GPU
For example
I use opengl es 2.0
...
3
votes
3answers
151 views
Optimizing performance of a heavy fragment shader
I need help optimizing the following set of shaders:
Vertex:
precision mediump float;
uniform vec2 rubyTextureSize;
attribute vec4 vPosition;
attribute vec2 a_TexCoordinate;
varying vec2 tc;
...
0
votes
1answer
54 views
Multiple Shaders-Single Program or If-else conditions via a uniform variable?
I want to ask a simple question about OpenGL ES 2.x (or I think it is valid for most of the recent OpenGL releases).
Which one of the following is faster? :
Attaching/Detaching multiple shaders ...
0
votes
1answer
119 views
OpenGL ES 2.0: glUseProgram vs glUniform performance
Which is faster, a single call to glUseProgram, or sending e.g. 6 or so floats via glUniform (batched or separately), and by approximately how much?
0
votes
1answer
38 views
OpenGL ES 2.0 - Is it ok to create & link 100 shader programs at once on a typical Android device?
I'd like to try to create and link up to 100 shader programs (probably 40) at once via glCreateProgram and glLinkProgram (and switch between them in onDrawFrame if I need to).
Each one woud have ...
0
votes
0answers
70 views
Shader program in OpenGLES 2 doesn't link on my device, empty log
I have a shader pair that is being compiled and linked successfully on other devices (Jelly Bean AVD, Nexus 4, SGS 3), but not on my device (HTC Desire).
The loading code is the same as the NDK's ...
1
vote
0answers
74 views
Could not compile shader, nothing in the log
I tried to run my game on Samsung Galaxy Gio S5660.
Some shaders compiled successfully and some not.
There is nothing relevant in the log though (ShaderProgram.getLog()).
log:
--From Fragment ...
0
votes
0answers
30 views
Why does my fragment shader fail when I use gl_FragCoord [closed]
My fragment shader doesn't compile when I use gl_FragCoord like this:
void main(void) {
...
meduimp float test = gl_FragCoord.x;
...
}
Or (seemingly) any other way.
This is for an iOS ...
1
vote
1answer
269 views
Camera frame yuv to rgb conversion using GL shader language
I am getting the camera frame from the android camera Preview Callback in Byte array and pass it to jni code. As we can't use byte in c++ so i am converting it to the integer array as follows:
...
0
votes
1answer
148 views
How to use fragment shader to draw sphere ilusion in OpenGL ES?
I am using this simple function to draw quad in 3D space that is facing camera. Now, I want to use fragment shader to draw illusion of a sphere inside. But, the problem is I'm new to OpenGL ES, so I ...
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
120 views
GL_LUMINANCE with byte array on OpenGL ES 2.0
I'm programming combining the yuv data which were got by libvpx(WebM decode library) and OpenGL ES 2.0 shader(for Android).
These are the same byte array, but it's not drawn correctly in this case.
...
0
votes
0answers
16 views
Using OpenGL ES2 on PVR SGX hardware, which costs more during rendering between changing Shaders and changing textures?
Shader programs and textures are objects of OpenGL. I want to know, in iOS devices(PVR SGX 5 series), during rendering of a frame, between changing textures (bing new texture) and changing shaders(use ...
1
vote
1answer
71 views
Scale and paint over with OpenGL ES shader on android
I need to make something like motion effect on an image.
For this I need to scale the original image and paint it over the not scaled original image with some transparency.
How to do it in an opengl ...
0
votes
1answer
22 views
Link a program object again
I have a program object which can be rendered successfully.
But sometime in my application at runtime, when I modify and compile its vertex & fragment shaders source, re-link it again by ...
2
votes
1answer
58 views
Shading different on device and simulator
I have a GLKViewController embedded in a regular view controller displaying a spinning 3D model of one of my company's products. I am using the same code in a different app to display another model ...
2
votes
1answer
274 views
OpenGL ES 2: Are vertex and fragment shaders necessary for simple drawing?
I'm currently working on some drawing routines using geometry generated at runtime and only flat colored. While searching for a minimal GL setup to do my drawing (I'm matching the screen resolution ...
0
votes
0answers
61 views
Shader compilation failure
The following shader code fails in compilation. glGetShaderInfoLog is empty. I have got the same shader working in a jni file but fails in the below fragment . Can someone please point out the error ? ...
0
votes
2answers
70 views
What are the differences between a OpenGL shader code written in a .cg file and another in a vsh/fsh file?
I'm a OpenGL ES 2.0 beginner and I don't understand why are different types of code for shaders. In particular, the differences between .cg and vsh/fsh.
1
vote
1answer
55 views
shader producing wrong results on tablets
ive only been working with shaders for a few days and have written a simple edge detection shader that adds a drop shadow and an inner shadow. It works great on my galaxy s2 and iphone 4, but the ...
1
vote
1answer
189 views
c++ OpenGL glGetUniformLocation for Sampler2D returns -1 on Raspberry PI but works on Windows
I'm making a crossplatform OpenGL program. However, I've encountered a problem, where glGetUniformLocation, which should return the location of a uniform variable in my shader program, returns -1, and ...
0
votes
1answer
59 views
Could I bind a vec2 array to a vec4 variable in shader language?
Could I bind a vec2 array to a vec4 variable in shader language?
For example, in the code blow, the variable "position" is a vec4 type, and I tried to bind variable "squareVertices" to it, but ...
0
votes
1answer
60 views
Simple channel offset shader in GL ES 2.0
Could someone point me in the right direction to creating an effect similar to this that would run on GL ES 2.0?
.vert
uniform vec2 uAberrationOffset;
void main() {
gl_TexCoord[0] = ...
0
votes
2answers
317 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 ...
1
vote
1answer
220 views
Texture driven particles in WebGL / OpenGL using a shader
I'm trying to achieve the following task:
I've a grid (plan) of NxM points
I've a texture which each pixel represents a force field for a position X,Y
I would like to iteratively update the initial ...
0
votes
1answer
50 views
Should the number of vertexes be equal to the number of texCoords?
My vertexShader:
attribute vec4 vertexPosition;
attribute vec2 vertexTexCoord;
varying vec2 texCoord;
uniform mat4 modelViewProjectionMatrix;
void main()
{
gl_Position = ...
0
votes
1answer
160 views
Thoughts on opengl es multitexture shader with 8 texture units
Below is a fragment shader that is performing poorly. Removing the conditional branches doesnt seem to improve performance. With just 150 polys I get 10fps on Kindle Fire and 20fps on Galaxy S3. ...
2
votes
2answers
353 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: ...
13
votes
1answer
212 views
glUniform4fv is giving GL_INVALID_OPERATION
I' trying to develop a basic game in iOS and OpenGL ES but I'm stuck on this problem with the uniforms, here is the code that passes the value to my uniform:
glBindVertexArrayOES(_vertexArray);
// ...
1
vote
1answer
241 views
iOs OpenGL ES 2.0 blending with shader on device and on simulator
Here is the fragment of fragment shader code (I need make blending in the shader):
float a = texture2D(tMask, texCoords).x; // opacity of current pixel from mask texture.
if ( a == 0.0)
discard;
...
0
votes
1answer
211 views
LUT Android Shader
I need to pass LUT from Android application to the fragment shader for color correction. I've found some examples where LUT is passed as Bitmap
GLES20.glBindTexture(GLES20.GL_TEXTURE_CUBE_MAP, name);
...
0
votes
1answer
188 views
WebGL: INVALID_VALUE: attachShader: no object or object deleted. Is this secretly helpful?
I'm starting to get into WebGL and I'm wondering if there is a good place to learn about the error output.
I keep getting the following errors
WebGL: INVALID_VALUE: attachShader: no object or ...
5
votes
1answer
154 views
How do OpenGL fragment shaders know what pixel to sample in a texture?
So I've got a triangle:
And I've got a vertex shader:
uniform mat4 uViewProjection;
attribute vec3 aVertexPosition;
attribute vec2 aTextureCoords;
varying vec2 vTextureCoords;
void main(void) {
...
0
votes
1answer
82 views
Passing one float from the vertex shader to the fragment shader
Currently I'm passing one float from the vertex shader :
varying float fog_factor;
...
fog_factor = clamp(gl_Position.z, 0.0, 1.0);
...
To the fragment shader :
varying float fog_factor;
...
...
-5
votes
2answers
60 views
Are there some shader editors in android? [closed]
These editors could help with writing shader by supplying indent\syntax-highlight\syntax-check and so on.
4
votes
0answers
161 views
Pass additional data to fragment shader through VBO - DynamicSpriteBatch
I'm learning opengl shaders with AndEngine , my goal is to make DynamicSpriteBatch with some lightshader where light position will be passed throught vbo to each draw call in spritebatch so i can ...
2
votes
0answers
147 views
Android fragment shader having problems
Sorry for the broad question, but I didn't know quite how to word it. I am creating an app that manipulates the camera's pixels. I am new to OpenGl and my problem could be in how I link textures to ...
0
votes
2answers
99 views
OpenGL Shader recursive process pixel
I have an OpenGL ES program to deal with a picture. If I deal with the current pixel, I need to use a previous pixel value. But it is not the pixel value of master map. It is a previous pixel value ...
3
votes
1answer
282 views
How to create a OpenGL texture from byte array in Android
I am new to OpenGL all together. I am making a color blind app on Android for academic purposes. I have all the code needed in the shader to do the manipulations I need, but I still have to get the ...
0
votes
1answer
77 views
What is wrong with my Android OpenGL shader code
My program crashes when I add this line of code:
uniform short colors[262144][3];
How many things am I doing wrong here?
Can you use shorts in the shader?
Can you use 2D arrays in the shader?
...
1
vote
2answers
300 views
How to pass int array into Android OpenGl fragment shader
I am very new to OpenGl and shaders in general. I want to use a static int array from my java code in the fragment shader to manipulate the color of the camera. Is there a way to pass in my int array ...
4
votes
4answers
398 views
OpenGL: Single vertex attribute for multiple vertices?
I have a vertex shader that accepts the following attributes:
a_posCoord: vertex position
a_texCoord: texture coordinate (passed to the fragment shader)
a_alpha: transparency factor (passed to the ...
3
votes
1answer
179 views
Log values of variables inside the vertex shader
I am new to OpenGL ES programming and I am trying to debug my shader programming and I wonder if there is any way to log the value of a particular variable. For example, in the vertex shader program ...
0
votes
1answer
126 views
OpenGL ES model loader example
I want to load a model in any format with lighting and bump mapping using OpenGL with shaders. Where can I find examples on c++ or java?



