0
votes
1answer
31 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
1answer
52 views

Good WebGL books/literature to learn the concepts [closed]

I recently started studying WebGL, and it's all very exciting. I really want to be able to code stuff on my own, but unfortunately, I have to rely a lot on libraries like three.js and matrix utility ...
0
votes
0answers
78 views

Heightmap mapping with Spherical Clipmaps

I'm trying to implement my own version of the spherical clipmaps described in this paper. But I can't figure out how to do the mapping described in section 4.1. This section describes using 2d ...
0
votes
0answers
61 views

How should I store colors in JS?

The RGB colors are 0-255, so I can store a color (+alpha) in a uint8array(4), but if I want to use them in my webGL scene, then I have to divide them by 255 in every frame. So which one is better? To ...
2
votes
1answer
158 views

Render multiple textures in one shader pass

Could it be faster in WebGL to render multiple textures in one pass like: varying float materialIndex; varying vec2 textureCoord; uniform sampler2D textureSampler1; uniform sampler2D ...
2
votes
1answer
86 views

Webgl weird rendering with simple texture

I'm having trouble rendering textures on my custom 3D shape. With the following parameters: gl.bindTexture(gl.TEXTURE_2D, texture); gl.pixelStorei(gl.UNPACK_FLIP_Y_WEBGL, true); ...
0
votes
0answers
64 views

AMD/ATI FirePro V5900 WebGl / OpenGl ES not supported?

it seems that with the current (28. Feb. 2013) Catalyst driver from AMD ver. 9.3.3 WebGl is not supported. At least I'm not able to hook up Firefox or Chrome with native GL support. It only works with ...
1
vote
1answer
212 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
102 views

get the view coordinate in a point sprite

If you pass a varying view-space position from the vertex shader to a fragment shader then the fragment shader can know the fragment's position relative to the camera (0,0,0 in view-space). This is ...
0
votes
1answer
117 views

rotate a globe with the mouse

I can determine where on a globe the user has clicked. When the user first clicks the mouse button down, I can store where they have clicked; lets call it the pin. Then, as they drag the mouse ...
0
votes
2answers
74 views

iOS Matrix and Vector Operations

I am in the process of converting a Web GL application into iOS. The web gl version of the app uses the gl-matrix package (https://github.com/toji/gl-matrix) to perform matrix and vector operations. ...
4
votes
2answers
394 views

How to eliminate texture seams from mipmapping

I'm using texture blending in my terrain's fragment shader to blend from one texture to the next. Right at the seam between using only my grass texture and blending between dirt/grass or snow/grass ...
-1
votes
2answers
135 views

OpenGL Point Funtionality in WebGL

In OpenGL you can draw define points like this: glBegin(GL_POINTS); for(float theta=0, radius=60.0; radius>1.0; theta+=0.1, radius-=0.3){ glColor3f(radius/60.0,0.3,1-(radius/60.0)); ...
0
votes
1answer
180 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
152 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) { ...
2
votes
2answers
131 views

What are WebGL's draw primitives?

I've been doing some graphics programming using webgl to draw OBJMesh's, but it hasn't gone too well as it is not drawing it correctly. I think thats because of the drawing primitives that I'm using ...
1
vote
1answer
126 views

How to calculate camera view angle (per Fragment in Fragment-Shader) (WebGL / OpenGL)

i've given all three matrices (Model, View, Projection) in Fragment Shader. Now i like to calculate the view angle per fragment. camera has a perspective of e.g. 45°. how can i do it? with this i like ...
2
votes
1answer
337 views

WebGL Jagged Edges (Anti-Aliasing)

So I'm currently rendering my terrain using vertices and color data only (no indices, no textures), and maybe when I add textures in later the problem will fix itself. Both at a distance and close up, ...
4
votes
4answers
383 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 ...
0
votes
2answers
348 views

three.js updating camera matrix world

I'm trying to make the camera project a cube into an image of a cube. I calculate the camera's internal and external parameters. I update the camera internal matrix by manually changing the ...
1
vote
0answers
238 views

webgl glsl emulate texture3d

I'm porting a piece of opengl to webgl and i'm trying to emulate texture3d. Somehow something is going wrong. No interpolation is needed because it is only used for calculations. I'm not sure about ...
-1
votes
1answer
84 views

How to see back face of sphere?

// set the scene size var WIDTH = 800; var HEIGHT = 640; // set some camera attributes var VIEW_ANGLE = 45, ASPECT = WIDTH / HEIGHT, NEAR = 0.1, FAR = 10000; var $container = $('#container'); // ...
2
votes
1answer
124 views

How to decide if a fragment's color is white or not?

I have many circles next to each other in my scene (white circles and circles with different colors). I would like to blur the white circles only. (White means (1,1,1) in my case.) My question is: ...
2
votes
1answer
154 views

Moving 3D camera up and down around a central point in ThreeJs

i am making a very basic application in ThreeJs, i have an object in the center and 2 sliders (horizontal rotation and vertical rotation). Both sliders output an integer between 0 and 360. So far i ...
5
votes
2answers
184 views

Index buffers in WebGL?

I am trying to learn some WebGL (from this tutorial http://learningwebgl.com/blog/?page_id=1217). I followed the guide, and now I am trying to implement my own demo. I want to create a graphics object ...
-1
votes
2answers
73 views

Error splitting text by newline

This is relevant portion of my code: ajax({ url: "TeaPot.obj", success: function(data) { var Script = data.split("\n"); for (var I in Script) { var Line = Script[I]; ...
0
votes
1answer
83 views

Load a file using JavaScript

I'm trying to load myself a file into my .js file, but I can't seem to find any code that explains it well enough. At the moment I have some code that will draw a flat triangle using webGL. Now I want ...
0
votes
0answers
154 views

Loading transparent-background image from canvas in WebGL

I have an interesting problem. I'm drawing text with a custom font to a canvas, then loading that canvas's image data into a GL texture. The problem is the transparency of the background. I can't get ...
0
votes
2answers
105 views

Rendering in discreet layers, then composited

In my project, I know have 3 discreet layers. Background Midground Foreground Each of these layers could potentially have vastly different unit scales and potentially overlapping geometry. But I ...
1
vote
1answer
646 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
110 views

Can I access gl_PointCoord in a vertex shader?

gl_PointCoord returns the 2D vector representing the UV mapping coordinates at that pixel. But it appears to be only available in the fragment shader. I know that you can send values from the vertex ...
2
votes
1answer
117 views

What is the difference between webgl and opengl es?

I found webgl and opengl es for 3d games browser while searching on the internet. But I don't understand what is the difference between the two kinds of api.
5
votes
1answer
267 views

Drawing a 3D tree structure in WebGL

I am working on drawing large directed acyclic graphs in WebGL using the gwt-g3d library as per the technique shown here: http://www-graphics.stanford.edu/papers/h3/ At this point, I have a simple ...
0
votes
2answers
109 views

Random “location not for current program” error

I have an issue with WebGL. Sometimes, when I add a new shader to my application, I start to get uniform4f: location not for current program error (displayed in Chrome console) every frame when I set ...
1
vote
4answers
722 views

WebGL is 2D API not 3D API

WebGL is actually a 2D API, not a 3D API. What does it mean? We can specify x,y,z co-ordinates in webGL vertex shader and fragement shader. I couldn't understand difference between 2D and 3D ...
1
vote
4answers
292 views

How to draw 2D shapes on the xy plane (z=0) in WebGL?

I wish to draw 2D shapes on the xy plane (z=0) in WebGL. I'm reading from here. Here is my drawScene function : function drawScene() { gl.viewport(0, 0, gl.viewportWidth, gl.viewportHeight); ...
0
votes
1answer
114 views

How to draw various shapes of various sizes during runtime in WebGl?

I'm reading here. The initBuffers function is used to store the vertices of the object we need to draw into the Buffer. var triangleVertexPositionBuffer; var triangleVertexColorBuffer; function ...
0
votes
2answers
198 views

Is there a WebGL equivalent of glGenVertexArrays and glBindVertexArrays?

I'm making a WebGL program and require the GL functions glGenVertexArrays and glBindVertexArrays. Does anybody know if there is an equivalent of these in WebGL? Here's what I have so far: canvas = ...
1
vote
1answer
245 views

Photoshop “blend modes” with OpenGL

I am planning to make a simple drawing tool, which supports multiple layers and all blend modes from Photoshop. I am considering to do the blending on the GPU (put each layer into a texture and draw ...
8
votes
2answers
943 views

Is it important to call glDisableVertexAttribArray()?

I'm not entirely clear on the scope of enabling vertex attrib arrays. I've got several different shader programs with differing numbers of vertex attributes. Are glEnableVertexAttribArray calls local ...
0
votes
1answer
407 views

using a texture mesh and wireframe mesh in threejs

I'm trying to draw a wireframe mesh and a textured mesh in threeJS but when I have both added to my scene the textured mesh doesn't display. Code below: I'm having trouble creating two meshes that ...
2
votes
2answers
256 views

Simple, IO concerning vertex shader in webGL

So, I'm trying to make sense of some code before I copy and paste it into my application. In openGL I'm seeing some variables typed as in and out. I see no such thing in the following code snippet. ...
0
votes
1answer
64 views

What should my shader look like when doing diffuse/directional lighting with skeletal matrices?

I've found examples online of how to perform diffusion lighting but I can't seem to find any regarding how things would change when using skeletal matrices. Does anyone have an example I could look ...
2
votes
1answer
582 views

Calculate near/far plane vertices using THREE.Frustum

I need some help to deal with THREE.Frustum object. My problem: I need to calculate near/far plane vertices; I've taken a look at these tutorials ...
0
votes
0answers
179 views

gluOrtho2D in webGL

UPDATE: this code actually works. My bug was a stray call to glViewport; that seems to be browser-window anchored and not canvas-relative in webGL and it was pushing everything off-screen. So the ...
1
vote
1answer
491 views

WebGL/OpenGL: Rotate camera according to device orientation

I have a web application I am trying to show a plane of map image tiles in a 3D space. I want the plane to be always horizontal however the device rotate, the final effect is similar to this marine ...
0
votes
2answers
174 views

using WebGL instead of desktop OpenGL

I have to make a basic Computer Graphics Assignment in which I have to display a basic model on the screen and give the user controls to move the position/orientation of the components of the model. I ...
2
votes
1answer
229 views

Why is gl.readPixels giving all 0 from Firefox?

I’m using WebGL to run some image processing (similar to Brad Larson’s GPUImage or the tutorial WebGL Fundamentals), followed by a CPU step that consumes the pixels. Unfortunately, when I call ...
1
vote
1answer
567 views

Camera lookAt vector

I'm working with a Three.js Perspective Camera and I need to get the point the camera is looking at. How can I calculate it using camera's matrix/rotation vector?
0
votes
1answer
142 views

Why does WebGL canvas turn white on the second frame when alpha is masked?

Please see this thread for details. To summarize, given the following circumstances: gl = canvas.getContext('experimental-webgl'); gl.clearColor(0, 0, 0, 1); gl.colorMask(1, 1, 1, 0); ...

1 2 3