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
1answer
133 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 ...
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
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 ...
5
votes
1answer
153 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) { ...
1
vote
1answer
667 views

What does `precision mediump float` mean?

In the learningwebgl tutorial1 I've found an interesting line in the fragment shader. precision mediump float; I've found an article about it here, but I still can't understand what does it mean? ...
1
vote
1answer
99 views

Update an object and only one, on the display

I use the librairy three.js to work in WebGL. In my case, I have two objects in my scene, I would like update my objects on the display independtly. I use shaders to modify the color of my objects, I ...
0
votes
0answers
340 views

Three.js and GLSL - Kaleidoscope shader

I'm starting and experimenting with GLSL and WebGL. Using Three.js r52. I have a simple plane geom mesh with a Shader material. I'm already passing a texture as uniform property, and I was able to ...
0
votes
2answers
77 views

Do WebGL fragment shaders support outerProduct?

When compiling this WebGL fragment shader in both Chrome 22 and Firefox 15: precision mediump float; uniform vec2 u_resolution; uniform sampler2D u_tex; void main() { vec2 texCoord = ...
0
votes
0answers
192 views

WebGL frame by frame animation from multiple textures

I am currently working on a prototype which aims to create a short interactive film made from a sequence of fast interchanging images. On each frame we plan to apply a fish-eye post-processing effect ...
1
vote
2answers
212 views

WebGL: Will zero-alpha pixels in a texture necessarily update the depth buffer?

I'm trying to render a texture which has a mix of fully-transparent pixels, and fully-opaque pixels. It seems like my only option is to render them distance-wise back-to-front (after all fully opaque ...
3
votes
2answers
125 views

State dependant rendering in fragment shader

I am currently working on my bachelor thesis which is about creating a 3D-Visualisation of a warehouse using the GWT plugin gwt-g3d. I've come as far as being able to display the structual layout ...
0
votes
1answer
179 views

Chrome WebGL Fragment shader on Radeon IGP 340m

I have a old machine with Radeon IGP 340m graphic card. According manufacture spec, it only support OpenGL 1.3 and not support fragment shader, but when i run some WebGL applications in here: ...
0
votes
2answers
180 views

Larger GLSL fragment output without mutliple buffer attachments

Is there any way to emit more then eg. 4 bytes from an GLSL fragment shader, if the implementation doesn't support multiple FBO buffer attachments or 'deep' buffer formats? For example when using ...
0
votes
1answer
404 views

WebGL render to texture - how do I write data to the alpha channel?

To preface this, I'm trying to replicate the water rendering algorithm describe in this article http://http.developer.nvidia.com/GPUGems2/gpugems2_chapter19.html. Part of this algorithm requires ...
1
vote
1answer
496 views

Accessing unclamped values from floating point textures in WebGL fragment shader

I'm trying to render a matrix of luminance values on a canvas as an image, when the luminance values are between 0 and 4000. I'm using a 2D floating point texture to do so, because I had heard that ...
4
votes
1answer
1k views

Smoothing low octave perlin noise

I'm trying to create super simple Perlin noise clouds in a fragment shader, using the Noise function found here. At low octaves my output is, for want of a better word, 'blobby'. I'd simply like to ...
5
votes
1answer
2k views

Really simple custom shader in Three.js - how to make it work?

I'm trying to make the simplest custom shader for Three.js that I can, but I haven't figured out how to make it work. The object the I'm using the shader for doesn't appear at all. In my page html I ...
0
votes
1answer
132 views

WebGL fragment shader fails to link when adding additional function call

I have a WebGL fragment shader that I am using to do raytracing. I pass in sphere and triangle data using textures. So far I've got 2 spheres and 3 triangles working. When I add the call to check ...
0
votes
2answers
253 views

vertex and fragment shader values in webgl

I'm new to webgl.I was wondering how the vertex and fragment shader values are generated. I was seeing some samples and could see a huge array of these values.Couldnt figure out how these values are ...
0
votes
1answer
569 views

Uniform arrays or Textures for passing data to fragment shaders?

If you have a lot of floating point data to pass to a fragment shader, is it a better idea to use uniform arrays or textures? It seems like uniform arrays are the proper way to do it, but the array ...
0
votes
1answer
711 views

Strange floating point arithmetics in WebGL fragment shader

I'm writing a simple WebGL program. I'm stuck with a strange behavior in a shader program: condition ( 1.01 * 2.0 > 1.0 ) evaluates to true but condition ( 0.99 * 2.0 > 1.0 ) evaluates to ...
0
votes
2answers
1k views

gl_Color is undeclared identifier on WebGL

I am looking at http://www.swiftless.com/tutorials/glsl/3_glcolor.html which has the following code snippet: void main() { // Set the output color of our current pixel gl_FragColor = gl_Color;} I ...