0
votes
1answer
41 views

Webgl GLSL / Open GL ES 2.0

I'm curently porting an engine written for android and IOS devices using OpenGLES 2.0 to webgl and I stumbled uppon a problem using shaders. Most of the shaders written for the mobile app doesn't work ...
0
votes
0answers
33 views

webgl shadow mapping gl.DEPTH_COMPONENT

Hey im trying to implement shadow mapping in webgl using this example: tutorial What im trying to do is initialize the depth texture and framebuffer. draw a scene to that framebuffer with a simple ...
0
votes
0answers
29 views

Trouble with shadow maps

Im having a little trouble with shadow maps. I render the scene from the lights perspective using orthographic projection and store the depth in a texture (using the depth texture extension), then in ...
1
vote
0answers
47 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) { ...
0
votes
0answers
105 views

Black screen on canvas when drawing with webgl

I am a WebGL/JS newbie facing a frustrating problem when drawing on canvas. I am trying to draw a cube on the canvas but all I am getting is a black screen. Can anybody help me figure out the problem ...