0
votes
1answer
53 views

Blank texture in webGL

I have simple quad, and very simple shader (see below). I load image needed for texture, process it, get uniform place in shader program, and send it, the way that has been explained in "learning ...
4
votes
0answers
150 views

Multiple transparent textures on the same mesh face in Three.js

Is it possible to lay multiple textures on top of each other on the same face in Three.js so that the alpha blending is done GPU accelerated in webGL? The textures are (or should be) applied to the ...
0
votes
1answer
48 views

Truncated image when creating textures from png

I am trying to create a texture from a png using the following code: ... var texture = gl.createTexture(); var img = new Image(); img.onload = function () { gl.activeTexture(gl.GL_TEXTURE0); ...
1
vote
1answer
235 views

Text to texture in webgl

I have a webGL code which draws spheres and I'm adding text label beside. What I'm doing is creating 2D rectangles and then apply a texture with my text. function createCubeTexture(text) { var ...
2
votes
1answer
103 views

WebGL : data to non square alpha texture

I have a weird problem with webGL. I'm using a dynamically generated texture of which only the alpha channel matters. Here's the code: var texture = new Uint8Array(ar); // ar is my array ...
0
votes
1answer
126 views

Read pixels in WebGLTexture (Rendering WebGL to texture)

I'm generating a texture on the GPU and rendering it to my own framebuffer object. It works fine and the texture is rendered to a WebGLTexture that I can pass to other shaders. However I want to ...
4
votes
2answers
400 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 ...
0
votes
1answer
207 views

Mapping texture (x,y) to 3D object (x,y) with Three.js

I have several OBJ files with associated mipmap texture files. I load the mipmap as a texture and map it to the 3D object that results from loading each OBJ file. The 3D objects, when rendered ...
0
votes
0answers
216 views

THREE JS TextureLoader

I am trying to add texture to a model that I converted to json and imported from 3ds Max. I searched but didn't find any code online which applies texture to json models using three.js r53. I guess ...
1
vote
1answer
112 views

What could cause textures to be black in the fragment shader?

I've been working a bit with WebGL but it seems I can't manage to display textures any more. The output of the fragment shader is always black (the silhouette is visible). I know this problem may ...
0
votes
2answers
834 views

Video texture in WebGL not working

I'm learning WebGL from this tutorial: https://developer.mozilla.org/en-US/docs/WebGL/Animating_textures_in_WebGL and in the last lesson it shows how to use video object as a texture. There's a live ...
0
votes
2answers
241 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: ...
4
votes
2answers
927 views

Displacement Map UV Mapping?

Summary I'm trying to apply a displacement map (Height map) to a rather simple object (Hexagonal plane) and I'm having some unexpected results. I am using grayscale and as such, I was under the ...
0
votes
1answer
143 views

webgl textures using pixel data not rendered

While drawing textures using pixel data in webgl, the texture is not rendered. the object displays in white color instead. Can somebody point me towards the error in the following code? function ...
2
votes
2answers
170 views

Copy texture from GPU to CPU

How can I copy a texture from GPU memory to the CPU in WebGL? I am updating the texture using texSubImage2D in runtime. I would like to avoid: storing a copy of a texture on a canvas rendering to ...
0
votes
1answer
177 views

How do I tell frag-shader which texture (of many previously loaded textures) to use per vertex of an external generated 3D file?

I'm trying to figure out the best way to load a textured 3D model into my webGL application but I'm having some trouble with it. My 3D models have more than 1 texture and I don't know how to tell the ...
5
votes
2answers
457 views

Repeated textures are severely distorted/shaking when rotating camera

I originally asked this question on gamedev, but none of the answers helped to solve problem, and I still have no clue what is the real cause. I didn't see anything about re-posting questions across ...
5
votes
1answer
1k views

Transparent textures behaviour in WebGL

Environment: WebGL, Chrome. I have the following behaviour when using transparent png's as textures for models: http://gyazo.com/ea0e94927bcae49f4a4e01d9f2e17c9f.png?1325878124 - the tree hides the ...
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 ...
5
votes
2answers
468 views

WebGL and rectangular (power of two) textures

WebGL is known to have poor support for NPOT (non-power-of-two) textures. But what about rectangular textures where both width and height are powers of two? Specifically, I'm trying to draw to a ...
1
vote
2answers
775 views

webgl image slider

i am new to webgl and i am trying to make an image slider. for now i just made the ring of image (nothing should slide yet) but it does not work and i dont know why (all i get is black canvas and no ...
2
votes
1answer
918 views

Textures not loading in webgl. reading and manipulating from 2D canvas, storing in Array

I'm trying (newbie) to build an application in webgl. I've come to the point where I want to load an array of images, and do some pixel manipulations on it. I'm trying to get the first pixel-column of ...
1
vote
1answer
421 views

Has anyone used a texture atlas with WebGL in Chrome?

I created a texture atlas and in Chrome there is some white on the edges of the cubes. However in Firefox it displays just fine. When I use colors there are not white edges either in Chrome or Firefox ...
5
votes
1answer
2k views

How do I use texSubImage2D to show sprites in webgl?

I can display my entire sprite (32x512) successfully with this call to gl.texImage2D: gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, image); It's squished horizontally, like I ...