A GPU program used in rendering. It is executed for each sample taken from a rasterized primitive. The output of this process is a number of values and a floating-point depth.

learn more… | top users | synonyms

0
votes
0answers
8 views

Fragmentshader and framebuffer solid screen

Dear Stackoverflowers, Lately I have been making my first baby steps in the world of shaders, using GLSL and openGL in C# with OpenTK, and I've stumbled into some problems which I seem to be unable ...
1
vote
1answer
30 views

GL ES: Fragment shader optimization

Summary: I get FPS slowdown as soon as I try to tint the sprites (i.e: multiply texture with color in the fragment shader) Details: Hardware: iPod touch 4 Using 64x64 png texture containing alpha ...
0
votes
0answers
32 views

Calculate percentage of a fragments depth position relative to a range

In my fragment/pixel shader I am trying to calculate a fragment's depth position in percent [0-1] in an given range. What I have is a bunch of shapes (there is no relative data given from them) but ...
0
votes
1answer
40 views

OpenGL Shaders Generate Colors

I have a sprite 10x10 pixels. How can i change colors with shaders-programm in real-time. All the blue color on the sprite turned to green. All the green color on the sprite turned to white. ETC... ...
0
votes
1answer
27 views

how to do customized stencil test in fragment shader

In my project, I used 'discard' call to perform customized stencil test, which tries to draw things only on a specified area defined by a stencil texture. Here is the code from fragment shader: ...
2
votes
1answer
32 views

Fragment Diffuse value changing with camera location/rotation

I am attempting to get some simple diffuse lighting to work in GLSL. I have a cube that is being passed in as an array of points and I'm calculating the face normals inside my geometry shader (because ...
0
votes
1answer
26 views

error when creating program and trying to get attribute Location | Opengl ES 2.0 Android

I am trying to draw a textured square on the screen, but whenever I try to use glGetAttribLocation it gives me a runtimeException and glError 1280. I have no clue why when tested on a new end device, ...
0
votes
0answers
18 views

Problems using 2D textures as 3D textures

I'm doing an application for iOS using openGL ES. I have a 3D image stored in a buffer and I need to render it. As 3D textures are not supported, I tried to divide the image into multiple 2D textures ...
0
votes
1answer
17 views

opengl es 2.0 specular lighting

this is my very first post here but I'm banging my head against a wall trying to figure out this problem. The code below is my fragment shader for an incredibly simple Opengl es 2.0 app. The vertex ...
0
votes
0answers
26 views

GLSL performance issue in fragment shader on vec4 add

I have a fairly simple fragment shader used to handle a situation with multiple lights (code below trimmed down for clarity, only two lights shown). The broad idea is to sum the various lighting ...
0
votes
1answer
43 views

AGAL: Calculating screen space position in fragment shader

Before I define my problem in more detail, I think I should begin by explaining how I've set everything up. Basically I have a simple plane mesh, defined as such (x, y, z, u, v): _vertices = ...
0
votes
0answers
40 views

How to create a wireframe shader for webgl/opengl? (I'm using gwt+vaadin)

I'm not very into 3d rendering but I would need some help/insights about how to implement a wireframe shader; I would need to know which files to change for this shader (should I change the vertex or ...
0
votes
1answer
27 views

default uniform (array) values

Rather than explicitly setting uniform data for a GL program, I set 'defaults' in a simple test (fragment) shader with: uniform vec3 face_rgb[] = vec3[] ( vec3(0.0, 0.0, 1.0), vec3(0.0, 1.0, ...
0
votes
1answer
57 views

Shader program to Vertex + Fragment shader

I am studying a tutorial which uses this shader: struct VSInput { vec3 Position; vec2 TexCoord; vec3 Normal; }; interface VSOutput { vec3 WorldPos; vec2 TexCoord; vec3 Normal; }; ...
0
votes
0answers
74 views

Particle System error

Im working in Particle System Class from this tutorial Particles - Anton's OpenGL 4 Wiki - Dr Anton Gerdelan Code: //Pixel Shader // shader to update a particle system based on a simple ...
0
votes
1answer
49 views

How to properly declare variables in CSS custom fragment shader?

For some reason every time I declare a custom variable in my CSS fragment shader, the shader stops working. I have no idea why this is the case since I'm quite sure the syntax is correct. Here is my ...
0
votes
0answers
110 views

OpenGL fragment shader has too many instructions

I'm writing a Level Editor in C# and OpenTK, and wanted to see if a more complex shader would work fine. So I grabbed this mine craft shader here https://www.shadertoy.com/view/MdlGz4. But I can't ...
3
votes
2answers
236 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: ...
0
votes
1answer
93 views

Possible to set an initial value for a shader uniform? (Android, OpenGL ES 2.0)

edit: As suggested, I'm trying to set an 'initial' value to my shaders uniform in my constructor, I have included some code and would be grateful if someone could explain why I get a blank screen if I ...
0
votes
0answers
82 views

Updating Attribute variables in Vertex Shader(glVertexAttrib3f) working as glVertex

I am having trouble using Attribute variables for getting a value into vertex shader. I want to provide the geometry shader with one of the points from the previous primitive(line) for some ...
0
votes
0answers
106 views

GLSL textureCube fails

I have a fairly simple fragmentshader that does not work. It appears to have something to do with the textureCube method. This is the fragment shader: in vec3 ReflectDir; in vec3 RefractDir; ...
0
votes
0answers
28 views

Does the size of a texture image impact the performance of texture fetching?

Using OpenGL ES 2.0, does the size of the texture impact how long it takes to fetch from a texture? I would think that it should be almost constant time to fetch a color.
1
vote
1answer
43 views

Using ByteBuffer as a Texture in OpenGL

Iḿ working on an application that should stream video data into OpenGL (ES2). For each frame of my video, I can get a ByteBuffer that contain all the data. I guess one way to go would be to convert ...
0
votes
1answer
92 views

Modifying glBlendColor from within a vertex/fragment shader

I'm using a blending function to colorize glyphs obtained from the freetype library when using subpixel rendering (LCD, glyph bitmap format is RGB (not alpha)): I upload the texture in RGB format to ...
0
votes
1answer
310 views

Unity3D visible seams on borders when tiling texture

For my game I have written a shader that allows my texture to tile nicely over multiple objects. I do that by choosing the uv not based on the relative position of the vertex, but on the absolute ...
1
vote
2answers
82 views

Performance issue of GLImageProcessing re-implemented with OpenGL ES 2 shaders

I re-implemented Apple's GLImageProcessing with OpenGL ES 2 shaders. The effects are perfect but the performance of the Sharpness filter is not as good — it runs only at 20 FPS. The shader code is ...
0
votes
2answers
111 views

Bad openGL version for GLSL shaders

I just want to make an OpenGL program using GLSL shader. But when I'm compiling it I have the following error message : Version number not supported by GL2. Here's my vertex shader code : #version ...
0
votes
0answers
57 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
1answer
57 views

can I use shadermaterial on particlesystem?

what am trying to accomplish is to to put a different pixel data as the material of each particle, this is my train of thought: set a canvas as texture of a PlaneGeometry, get pixel chunks of data ...
0
votes
0answers
87 views

SurfaceTexture transform matrix internals on android

i've managed to place a video on a openGL texture using SurfaceTexture and now I'm trying to understand what happens under the hood. Usually on OpenGL, In order to get the coordinates of the video, I ...
0
votes
1answer
136 views

Starling filter : invert alpha

I try to make a shader for Starling that will invert alpha (a kind of mask) of a Starling sprite : var fragmentProgramCode:String = // Get texture "tex ft1, v0, fs0 <2d,linear,nomip>" + "\n" + ...
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
1answer
341 views

Android YUV-RGB conversion in OpenGL ES 2.0 fragment shader

I'm trying to locate/figure out how to color covert a YUV texture (for instance YUV420P) to RGB in OpenGL ES 2.0 fragment shader code on android. I have found various pointers/tips but haven't been ...
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
1answer
64 views

Writing only red color component to AGAL pixel shader output

I want a pixel shader om AGAL that instead of simply copying the color passed to it from the vertex shader to the output, only copies the red component from the passed color and sets the green and ...
0
votes
1answer
134 views

WebGL texture2DLod alternative?

I'm writing texture atlas on the fragment shader and I really need to use texture2DLod in order to render the textures correctly in different mip levels. I just found out that WebGL only supports ...
3
votes
1answer
46 views

When it is good to compile shaders?

I'm trying to move into the 'modern' OpenGL. I think I understand so far the concept of shaders and I know how to compile them, but I'm not sure about when it is good to do it. Is it ok to have a ...
1
vote
1answer
79 views

Vertex Shader and fragment failed to compile, conflict with main [closed]

Backstory : Yesterday, I hangout[whatever that google plus video chat called] with the guy, who is showing me about OPENGL ES for developing game on Android. I got inspired to learn OPENGL from him ...
1
vote
2answers
112 views

Fragment shader for unsigned integer textures

I am using following shader for unsigned integer textures to read a data: Fragment shader: Code : #version 150 out uvec4 fragColor; uniform uint factor; void main() { uint temp=factor; temp=temp/2; ...
0
votes
0answers
102 views

WebGl: Store data from a fragment shader

I'm currently working on a picking mechanism, I was wondering if there was a way to store piece of data from a fragment shader in order to reuse it in another one. I'd actually like to store specific ...
0
votes
0answers
106 views

GLSL implicit int to float error yielded at “float to float”…?

The following line in my fragment-shader… gl_FragColor.r = curPosition.x; raises warning C7011: implicit cast from "int" to "float" but curPosition is defined as vec3 (so it is a float) and ...
0
votes
1answer
120 views

Normalize function in webGL not working (THREE.js)

I am currently working on creating a shader in THREE.JS which will act like the normal shader, but using a color as the input to define how it is shaded. Below is the Code that is causing the ...
2
votes
1answer
166 views

Sprite Color palette swap in Pixel Shader

I am in the making of a sprite based fighting game, and development has come to a point, that I want to implement color swapping of images during runtime (so a user can specify through an interface, ...
2
votes
2answers
200 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 ...
1
vote
1answer
116 views

Fade Screen to specific color using glsl

I want to fade the screen to a specific color using glsl So far this is my glsl code and it works quite well: uniform sampler2D textureSampler; uniform vec2 texcoordOffset; uniform vec3 sp; uniform ...
0
votes
1answer
112 views

openGL using glVertexAttribPointer

So I created a quad using glBegin(GL_QUADS) and then drawing vertices and now I want to pass into my shader an array of texture coordinates so that I can apply a texture to my quad. So I'm having ...
1
vote
1answer
144 views

CG: repeating a texture using fmod causes aliasing

I'm writing Cg shaders using Unity3D. I'm trying to use fmod function to repeat a texture along an axis (basically the same effect I can achieve by setting the texture scale in Material with ...
0
votes
0answers
71 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. ...
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
2answers
71 views

OpenGL shader - overlaping multiple textures

I am not able to find a pattern to draw textures one over other. I need to make result fragment color like: tex1 + (1-tex1alpha)*tex2 + (1-tex1alpha-tex2alpha)*tex3 Not to mix textures , but to ...

1 2 3 4 5