Tagged Questions
0
votes
1answer
43 views
UV calculation on custom 3d mesh
After making some research, i didn't find yet any formula that will offer me a way to push faceVertexUvs on my custom mesh (basically countries on top of a sphere), I need to burn world texture on ...
1
vote
0answers
23 views
Texture and Lines not blending in WebGL
I'm supposed to be having a 2d program using webgl and supposed to have a picture over the canvas which is a texture and above it i draw lines using webgl also. But the thing is both have different ...
0
votes
1answer
47 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);
...
0
votes
0answers
100 views
texImage2d with canvas
I read that it's possible to pass an HTMLCanvasElement as parameter of texImage2d:
void texImage2D(GLenum target, GLint level, GLenum internalformat, GLenum format, GLenum type, HTMLCanvasElement ...
1
vote
3answers
137 views
Creating texture from getImageData (Javascript)
It is possibile to create a texture (to use on a element in a canvas) from the getImageData array of another canvas (in the same html page)? maybe without three.js? Thanks a lot,
Jennifer
0
votes
1answer
131 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 ...
2
votes
1answer
87 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);
...
1
vote
0answers
212 views
three.js dds compressed textures uv map issue
I'm trying to get dds textures to work with three.js. I have a model in json (converted from .obj + .mtl using three.js converter) using baked textures in jpg/png format. I've created a dds texture ...
0
votes
3answers
623 views
Changing texture and color on Three.js collada object
i recently got three.js example from the official site working with my collada objects (.dae) using the ColladaLoader.js .
Now my question is, how do i change the loaded collada object color ...
3
votes
2answers
170 views
WebGL - How to render large texture?
I'm trying to do some image processing in WebGL. But if I try to load large pictures (from camera - 8 MP) in a GLSL texture on mobile devices, the browser crashes. Small pictures working fine. So I ...
0
votes
0answers
61 views
Cannot pass current result to the next rendering
I am trying to do a progressive rendering using the previous rendering as a texture to the next one.
EDIT 1: As suggested in the comments, I did updated my version of THREE.js to the latest ...
0
votes
1answer
114 views
Can you feed an image loaded as texture as anothers texture mipmap in three.js?
This is a question, not an issue.
I'm working in a terrain with atlas texture. To mitigate the color bleeding i want to feed the terrain texture with mipmaps built in an external tool.
For the time ...
1
vote
1answer
116 views
WebGL blit texture to canvas
What is the cleanest way of blitting a texture to the HTML canvas in WebGL. I could see setting up an orthographic projection and rendering a textured quad, but is there a cleaner way?
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 ...
0
votes
1answer
383 views
Three.js not showing my texture
I need to make a ball with a texture on it. I'm very new at WebGL and Three.js. The problem is that I see a White Sphere but not the texture on it. As a new user I am not able to submit a picture.
...
0
votes
0answers
339 views
how to call materials with export three.js in blender
I seek to create a basic page with "Three.js" and "JSONLoader", with an export in blender
0 : my object file is *.js with blender plugin 2.65 and my 2 textures are in same folder.
1 - I don't ...
1
vote
5answers
331 views
WebGL Memory Leak
I know that there are a lot of topics about memory leak but I tried the solutions and it still doesn't work.
I am working on this example
So I have
materialPano=new THREE.MeshFaceMaterial( ...
1
vote
1answer
110 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
1answer
102 views
WebGL selecting internal format
What are the valid possible values to pass to internalformat in WebGL's texImage2D call? The WebGL spec doesn't seem to make it clear, and I'm not sure which enums from desktop GL documentation will ...
3
votes
1answer
566 views
Non-power-of-2 texture render warning in chrome
Page: http://nps.netarteria.pl/gallery/
I'm following this tutorial: https://developer.mozilla.org/en-US/docs/WebGL/Animating_textures_in_WebGL but my chrome (in inspect mode) shows this warning: ...
0
votes
0answers
36 views
Video textures - how to handle end of video playback?
Page: http://nps.netarteria.pl/gallery/
I'm following this tutorial: https://developer.mozilla.org/en-US/docs/WebGL/Animating_textures_in_WebGL but whenever a video ends playing (the file ends) it ...
2
votes
3answers
215 views
WebRTC and ThreeJS to create a brushed metal textureCube
I'm trying to apply a THREE.ImageUtils.loadTextureCube() using the real time camera onto a spinning cube.
Until now, I managed to apply a simple texture using my video to a MeshLambertMaterial :
var ...
1
vote
0answers
145 views
WebGL setting different textures
I'm working on an existing project in WebGL and there is something wrong with the textures, i'm having some trouble setting the right texture to the right object, on the khronos.org forum I have some ...
3
votes
1answer
329 views
Read pixels from a WebGL texture
I have a WebGLTexture object. How do I get pixels of that texture (similar to WebGL's readPixels, but for a texture)?
One idea I have is to create a canvas and a WebGL context with ...
0
votes
2answers
277 views
DXT Compression is yielding same filesize as original PNG
I'm trying to convert/compress my textures into a DDS format with DXT compression from original PNGs. I'm on a Mac, so I'm using Graphic Converter (though I've tried other tools as well). But no ...
1
vote
1answer
137 views
Cube Texture disappearing after some time
I have made a cube with a texture and text on it. When I rotate the cube, after some time, the texture disappears and a very nice colorful cube appears.
I have made a jsfiddle to view the problem:
...
1
vote
1answer
979 views
Three.js WebGL texture shows up black on plane
So basically, I have a scene in WebGL with 2 planes. One of them has a transparent texture on it and it shows up fine. The other is supposed to have a high res, non-transparent texture loaded up on it ...
0
votes
1answer
460 views
Animating Canvas Billboard in THREE.js
Everyone,
I'm trying to animate a Canvas-based texture that is mapped onto a plane, like a billboard. I've made a point of including material.needsUpdate & texture.needsUpdate, but I'm still ...
3
votes
1answer
1k views
Three.js - multiple material plane
I'm trying to have mutiple materials on a single plane to make a simple terrain editor. So I create a couple of materials, and try to assign a matetrial index to each vertex in my plane:
var ...
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
850 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
797 views
How to use multiple textures on a cube in WebGL?
This is my source code. It still doesnt work. I want to put 6 different pictures on the 6 sides of a cube, which is animated. Please help :)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 ...
2
votes
2answers
2k views
In THREE.js , how to repeat the texture map like 'GL_REPEAT'?
I have a house model in my game
and I got some materials for the house geomerty
There is a material for the wall of the house
I got a texture-map-image to show the bricks
var mat = new ...
1
vote
1answer
1k views
How to use multiple textures in WebGL?
I wanted to use 6 different textures on a cube, one per side, but can't find the mistake. Here's my current code:
var texturen = new Array();
function initTexture(sFilename,texturen)
{
var ...
0
votes
0answers
162 views
rendering to texture image with text(webgl)
I'm rendering image with text into a certain texture simultaneously.
It's possible now. I already found it.
It draws image and fills text to canvas that is divided into two area,
but I need to draw ...
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 = ...
0
votes
1answer
1k views
Three.js does not show texture on sphere
There are some threads about textures which do not showing up. I have tried them all, but nothing helped.
I have spent a few hours on this now. Every time I end up looking at a black sphere.
I am ...
0
votes
1answer
599 views
Creating normal map from height map in webGL
I'm doing bump mapping with webGL shaders. Everything was fine until I was generating normal map from the height map. I generated the height map with another shader and rendered it as a texture. Then ...
1
vote
1answer
326 views
Webgl tileable non-repeating textures
Is there a technique I can use in WebGL (using Three.js by MrDoob) that will cover a large area E.g. a stone wall or a cobbled floor with a random texture that doesn't look like it's repeating? I ...
1
vote
2answers
650 views
How does multi-texture OBJ->JSON converted files keeps track of face-texture mapping?
I'm trying to manually (no libs such as Three.js) load a JSON 3D model into my webGL code just for fun but I'm having a hard time when my models have more than 1 texture.
In a OBJ->JSON converted ...
0
votes
1answer
490 views
WebGL Texture read/write at the same time
I want to do some rendering with webGL shader but I need to read an array of data which was generated by the shader from previous frame. I'm doing this with using the shader to write to a texture and ...
2
votes
1answer
212 views
WebGL is only rendering/loading certain PNG files
I have created an OOP environment for WebGL so I can easily create all the objects I need for future game projects i might get. Most of the work is already done, but I'm getting painfully frustrated ...
4
votes
1answer
2k views
WebGL create Texture
I successfully created a WebGL texture from an image and drew it into a canvas element.
function initTexture(src) {
texture = gl.createTexture();
texture.image = new Image();
...
0
votes
1answer
199 views
WebGl textures visual distortion
I rendering hex grid plane, getting result: http://gyazo.com/0a008cc909138c7e3c1368e0078c7695
Grid distorted. Please help - what could be reason for this and how to fix?
I suppose it happens because ...
1
vote
4answers
1k views
WebGL pass array shader
I'm new to WebGL and I'm facing some problems of the shaders. I wanna do multiple light sources in the scene. I searched online and knew that in WebGL, you can't pass an array into the fragment ...
1
vote
1answer
273 views
Save big webgl texture to disk
I did a webgl shader that generate a procedural texture of about 8k * 4k. I need to save this texture to disk. I was wondering if there is some facility to do that. I know it would be possible to ...
0
votes
1answer
345 views
Image texture issue
I've found an issue when deleting a texture from a sphere. I have created a sphere with a texture and it works. Then, I duplicated this file and take the duplicated file and delete the texture from ...
1
vote
1answer
420 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 ...
0
votes
1answer
563 views
Using depth image data to construct 3D model in WebGL
I have an image that is a combination of the RGB and depth data from a Kinect camera.
I'd like to do two things, both in WebGL if possible:
Create 3D model from the depth data.
Project RGB image ...
0
votes
1answer
577 views
Unexpected stretched texture
I have the following code snippets:
ctx.texParameteri(ctx.TEXTURE_2D, ctx.TEXTURE_MAG_FILTER, ctx.LINEAR);
ctx.texParameteri(ctx.TEXTURE_2D, ctx.TEXTURE_MIN_FILTER, ctx.LINEAR);
...