Tagged Questions
0
votes
1answer
34 views
How to cut an object using WebGL shaders?
I would like to cut an object (a box) in WebGL (fragment shaders / vertex shaders) without using Boolean operations (union, difference, etc..).
I want to use shaders to hide some part of the object ...
0
votes
1answer
21 views
WebGL: Switch between Shaders
i wrote a tiny function to switch between shaders, but unfortunatelly it doesn't work.
I create the shaders and return them as shader objects.
program = gl.createProgram(vs, fs, "VertexPosition", ...
0
votes
1answer
64 views
How to add shader to THREE.Object3D loaded from OBJMTLLoader
I have a model loaded using THREE.OBJMTLLoader.
var loader = new THREE.OBJMTLLoader();
loader.addEventListener('load', function(event) {
var mesh = event.content;
scene.add(mesh);
}
...
0
votes
1answer
35 views
Force a sprite object to always be in front of skydome object in THREE.js
I currently have a custom shader draw a gradient on a skydome and would like to have a sun/moon in front of the skydome (from users perspective). The easiest way to do this is to have sprites for the ...
0
votes
2answers
34 views
Mesh on the other side of light source looks strange
i'm programming in WebGL (using OpenGL shaders) simple model loader. I've implemented phong shading in fragment shader. However when i load larger objects than simple monkey/cube and turn camera out ...
0
votes
1answer
51 views
webGL ambient lighting without textures on object
I have been following these tutorials which were good, but I can't seem to figure out how to light an object which doesn't have a texture on in. I mean that the shader given in the tutorials doesn't ...
1
vote
0answers
79 views
Is environment mapping broken for the normalMap shader in three.js r57?
I'm trying to create some very simple water by animating the uv's of a normal on a plane. Adding environment map reflections would enhance the effect but as I was setting it up, I noticed that the ...
0
votes
1answer
126 views
Shader Materials and GL Framebuffers in THREE.js
I'm trying to use an FBO in a material in THREE.js. I have a GPU-based fluid simulation which outputs its final visualisation to a framebuffer object, which I would like to use to texture a mesh. ...
1
vote
0answers
46 views
WebGL/GLSL ES strange behaviour when changed useless (?) part of the code
I am writing some shader lighting computations for my WebGL application. WebGL uses GLSL ES.
This is my Phong BRDF :
float cosTheta = dot(L, N);
vec3 R = reflect(L, N);
if(cosTheta > 0.0) {
...
1
vote
1answer
78 views
Terrain shader that keeps default lighting
So for my terrain I have a shader to blend multiple textures together (like grass, sand, rocks). This all works nicely, but the only problem is that the shader isn't compatible with the Three.js ...
0
votes
1answer
230 views
THREE.js blur the frame buffer
I need to blur the frame buffer and I don't know how to get the frame buffer using THREE.js.
I want to blur the whole frame buffer rather than blur each textures in the scene. So I guess I should ...
0
votes
2answers
120 views
const float array in WebGL shader
I'm using THREE.js with WebGL shader. I want to declare an array of float numbers in fragment shader. The GLSL constant float array is defined like:
#define KERNEL_LENGTH 9
const float ...
1
vote
1answer
153 views
THREE.js repeat wrapping texture in shader
I want to repeat wrapping texture in THREE.js shader.
The original texture image is:
I want it to repeat 4x4 times which will looks like:
But with the following code, it turns out to be:
...
3
votes
1answer
85 views
Double sided transparent shader looks buggy
I have made a little test that allows you to experiment with shaders in a 3D environment using three.js.
There's a sphere in the scene that shows the shader.
The demo shader I have created is a very ...
1
vote
1answer
175 views
Normal map from height map artifact
I'm baking normal map on the fragment shader from a height map. The height map looks great and looks smooth. However, when I generate the normal map I get very weird result.
Here are two rendered ...
0
votes
1answer
123 views
gl_FragCoord.x, y, z being 1 for all pixels and w being the depth
I'm using THREE.js with shader. I'm trying to get the zbuffer information.
Vertex shader:
// switch on high precision floats
#ifdef GL_ES
precision highp float;
#endif
void main()
{
gl_Position ...
1
vote
2answers
132 views
Problems loading shaders from external file in ThreeJS
This has been asked before (2 years ago) and in several places both in ThreeJS github and SO. But still many (including me) are having problems with this. This is what I got now (which is part of a ...
1
vote
1answer
206 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 ...
1
vote
1answer
84 views
WebGL - getAttribLocation: no object , Shader issue
I have the following issue with my WebGl code.
ERROR:
WebGL: INVALID_VALUE: getAttribLocation: no object or object deleted
My draw function:
function drawScene () {
vertexPositionAttribute = ...
2
votes
1answer
79 views
In which webgl shader do I convert array to image
I'm reading a z-stack of 16-bit images into javascript (i.e. an array of images). I'm new to webgl shaders and I'm having problems with how to loop over the array.
I hope to put the whole ...
0
votes
1answer
187 views
three.js - fragment shader basics - color a fragment by it's position
I try to color the fragments in my shader according to their position between highest and lowest vertex. Here are the shaders:
<script type="x-shader/x-vertex" id="vertexshader">
uniform ...
1
vote
1answer
55 views
write variable from inside shader for outside use
From inside the shader I can't modify uniforms or attributes. Is there a way I could write a variable that I can use outside the shader?
My goal is to determine the lowest and the highest vertex on ...
0
votes
1answer
172 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
150 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
0answers
75 views
ThreeJS object material showing blank
Below code renders the earth as BLACK globe. please note im a beginner in WebGL, also below 'Uniforms' & parameters section I found in someones code and utilized it.
If I add normal material it ...
0
votes
2answers
138 views
Custom Depth Shader from grayscale to RGBA
What do i have to change in this vertexshader/fragmentshader from simple grayscale depth to RGBA encoded depth, especially to display ChromaDepth(tm)-color-scheme instead of grayscale?
...
4
votes
4answers
375 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 ...
1
vote
1answer
171 views
Three.js using WebRTC and applying a Shader
I can't figure out how to apply a shader to a three.js object that has a video texture.
I've been playing around with webRTC and three.js and successfully mapped a video texture onto a mesh using a ...
0
votes
1answer
61 views
Some faces of a THREE.Mesh object are not displayed
I use the three.js librairy to code in WebGL, and I would like use shaders. My objects are THREE.Mesh objects.
To use shaders I create three buffer to transmit to informations to shaders.
...
1
vote
1answer
227 views
Render TMX Map on Threejs Plane
Question updated with new code
I am trying to write a WebGL shader that will draw a TMX Layer (exported from the Tiled editor). I am using THREE.js to create a Plane mesh and have the material be ...
1
vote
1answer
98 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
1answer
326 views
Model showing up black when using Collada Models with ShaderMaterials in Three.js
I tried to load a collada file (exported from Blender) into a three.js scene and then replace the material with a ShaderMaterial.
Since there is only one object in this collada file it is located at ...
0
votes
2answers
121 views
Custom Shader program rendering “N” number of cubes on canvas using Three.js?
<html lang="en">
<head>
<title>Three.js </title>
<meta charset="utf-8">
<script src="resources/three.min.js"></script>
...
0
votes
2answers
235 views
Threejs Custom Shader - Screen Tearing
So to implement a tilemap using Threejs and Brandon Jone's tilemap method (found here) I am using a THREE.Plane geometry for each layer, and painting the face with the following custom shaders:
...
-2
votes
1answer
60 views
Using more than 2 attributes gives an error
I have an issue with WebGL shaders.
I have multiple shader programs.
When all of my shaders have 2 attributes (types don't matter), the polygons are drawn fine.
However, if I add one more attribute ...
1
vote
1answer
902 views
Three.js Custom Shader
Note that much of this code as changed as of edit 3 below.
So I really like a blog post by Brandon Jones (found here). I wanted to convert his code to Three.js, but I am having some issues. You ...
1
vote
0answers
155 views
three.js custom attributes
I'm trying to make a real-time in-browser shader writing tool and I have a problem with custom attributes. You can see what we've got here: 78.46.211.78/index.html
The vertex shader and fragment ...
0
votes
1answer
46 views
Passing information from shaders to JavaScript
WebGL is shader based. In my shaders I can write code like
int a = 1;
int b = 2;
int c = a + b;
Is there a way to extract the value of c from shader-land to JavaScript-land?
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 ...
2
votes
1answer
833 views
Three js - Cloning a shader and changing uniform values
I'm working on creating a shader to generate terrain with shadows.
My starting point is to clone the lambert shader and use a ShaderMaterial to eventually customise it with my own script.
The ...
0
votes
1answer
95 views
Update function on Three.js
How make an Update function in Three.js, like in Unity3d?
I mean, that i create an object:
var torus = new THREE.Mesh(
new THREE.TorusKnotGeometry(60,20,100),
reflectionMaterial
...
0
votes
1answer
64 views
Macros when compiling shader for webgl
In OpenGL ES 2 you can set an array of strings as the shader source
void ShaderSource( uint shader, sizei count, const char **string, const int *length );
Which can be used to "inject" macros into ...
0
votes
4answers
365 views
Web-GL : Mulitple Fragment Shaders per Program
Does anyone know if it's possible to have multiple fragment shaders run serially in a single Web-GL "program"? I'm trying to replicate some code I have written in WPF using shader Effects. In the ...
4
votes
1answer
2k views
How to make a normal map in THREE.js correctly?
I just tried to apply the Normal map Ninja demo to a cube in my scene with the following code - using new latest Three.js version from dev branch:
// common material parameters
var ambient = ...
3
votes
3answers
223 views
Inline webgl shader code in javascript
I'm writing a simple Javascript library that makes use of some WebGL code. I'd like to include the shader sources inline in the .js file, because my alternatives are to include them as script tags in ...
2
votes
2answers
505 views
Enabling an extension on a Three.js shader
How can I enable an extension on a Three.js shader?
My code so far:
getting extension:
var domElement = document.createElement( 'canvas' );
var gl = domElement.getContext('webgl') || ...
0
votes
1answer
176 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
1k views
Generating Heightmap from Image with GLSL Shader
Lately I've been playing around with webGl and I stumbled across a cool little demo here (source here) that I'd like to alter slightly to get some cool results.
I'm interested in changing the way ...
0
votes
2answers
211 views
Is there a way to cache slow WebGL shader compilation if the shader never changes?
I have a WebGL shader which compiles perceptually immediately (Chrome on Windows 7) when I have this:
void main(void) {
if (antialias_level == 1)
gl_FragColor = ...
3
votes
1answer
1k views
WebGL GLSL Shader: accessing texture2D overrides other texture
I have a very disturbing problem with glsl in WebGL.
This shader works as expected:
uniform sampler2D tColor;
uniform sampler2D tNormal;
varying vec2 vUv;
void main() {
gl_FragColor = ...

