Tagged Questions
3
votes
1answer
59 views
GLSL: Removal of dead code causes visual errors
I've been having a lot of strange problem's while trying to write a raytracer in an opengl shader. I try to determine if the source of the error is myself, and often this is the case, but I've come to ...
1
vote
0answers
125 views
Edge detection shader using a color picking texture (OpenGL)
I'm writing a small 3D application where I want to highlight selected objects with colored edges. I render the normal scene into two color attachments using a FBO. The first one contains only the ...
0
votes
1answer
43 views
1
vote
0answers
52 views
Using large 3D textures in pyglet
I'm trying to do some GLSL particle stuff with precomputed velocity vector fields. These vector fields are stored as ~13 1024x170 float textures, each corresponding to a different "slice" in the ...
1
vote
0answers
140 views
GLSL 330: down sample texture
I want to down sample an input texture from 800x600 to one quarter itself (200x150 pixel). But if I do that I can see only a little bit of the image. It seems that the frament shader doesn't down ...
2
votes
2answers
162 views
Strategies for packing data into OpenGL 3D array
I am implementing a voxel raycaster in OpenGL 4.3.0. I have got a basic version going where I store a 256x256x256 voxel data set of float values in a 3D texture of the same dimensions.
However, I ...
0
votes
1answer
133 views
Getting a texture output from GLSL shader to opengl
I have a GLSL shader that compares two masks, and colours the pixel with the image of the highest value. I want to output that to a texture that stores at each pixel the highest mask for example
I ...
0
votes
2answers
306 views
Drawing Textures Using OpenGL ES2.0 (or how to use GPU for YUV -> RGB)
I'm trying to use OpenGL for the first time under iOS in an attempt to render a stream of YUV images by converting them to RGB. I've looked around and found some examples here and there, and I'm ...
0
votes
1answer
46 views
How to store texture uniforms in the state of the program?
I already learned that uniform values are stored in the state of the shader program.
// GLSL code
uniform mat4 projection;
// C++ code
GLuint location = glGetUniformLocation(program, "projection");
...
0
votes
1answer
72 views
Sampler 2D Alpha Value Stays at 1
I create a texture for use in a 2D sampler as a displacement map for a mesh of tessellated terrain. Using the passed in vertex coordinates, I have a smooth interpolated value of the patch corners for ...
0
votes
0answers
30 views
GLSL: How to constrain texture() calls to region of interest?
I'd like to constrain our 3D surface shader, which visualizes a voxel volume, to an axis aligned bounding box which specifies a sub-region of the texture. I've replace all the texture3D() calls with ...
0
votes
0answers
82 views
Texture superposition with blending in OpenGL
I'm working on a VJing app.
There's the specs :
I use OpenCV to grab frames from multiples video sources.
I'm processin them using GLSL to apply different effects.
The goal is to creat a output ...
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
vote
1answer
105 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 ...
1
vote
1answer
180 views
Vertex Buffer Object + Texture for each triangle [duplicate]
Possible Duplicate:
VBO - Indexation without indexation
Here is my problem, I wanna render a huge model (one million of face), I've got an index buffer for the faces.
I've generate myself ...
1
vote
1answer
65 views
texelFetch from CubeMap
In OpenGL/GLSL, is it possible to do texelFetch from cubemaps? Something along the lines of:
color = texelFetch(cubemapsampler,texCoordi, side);
1
vote
1answer
240 views
GLSL change pixel color of texture
I want to change a single pixel on a texture that I have attached to my shader.
There must be a simple function.
tex2D(sampler,uv) is for reading it out and returning that pixels color.
I need a ...
1
vote
1answer
237 views
Texture access in vertex shader (GLSL 1.2) allowed?
I am trying to port a geometry shader back into an OpenGL 2.1 (GLSL 1.2) vertex shader.
After having replaced all code the compiler complained about, it gave me another error:
Too many vertex ...
1
vote
1answer
452 views
GLSL: sampler3D in vertex shader, texture appears blank
EDIT: Think I've narrowed down the problem. Skip to the running section.
I'm trying to sample a 3d texture in my vertex shader, I'm going to use the texel values as corner value in Marching Cubes. ...
2
votes
1answer
411 views
samplerBuffer in texelFetch()
Frag shader:
out vec4 Color;
uniform samplerBuffer sampler;
uniform int index;
void main()
{
Color=normalize(texelFetch(sampler,index));
}
I am using glTexBuffer() for texturing for all the ...
4
votes
1answer
468 views
texturing using texelFetch()
When I pass non max values into texture buffer, while rendering it draws geometry with colors at max values. I found this issue while using glTexBuffer() API.
E.g. Let’s assume my texture data is ...
0
votes
1answer
408 views
GLSL - Sample an volume of 3d texture
I'm recently working with 3d textures in OpenGL.
I realized that when you are working with 3d textures, you have to use texture3d() A LOT.
Which is pretty much a gpu killer. Is there any function in ...
1
vote
1answer
170 views
is there any way to bin an 3d surface created in CUDA to an OpenGL texture?
here is the scenario:
I pass an 3D OpenGL Texture to CUDA by cudaBindTextureToArray transforming it with a non rigid transformation and writed it to a 3d surface and then I want to pass it by ...
3
votes
2answers
278 views
GLSL - are texture lookups optimized?
Let's consider following GLSL examples:
1.
uniform sampler2D t;
...
void main() {
float val_r = texture2D(t, coords).r;
float val_g = texture2D(t, coords).g;
float val_b = texture2D(t, ...
1
vote
2answers
778 views
OpenGL two pass shader effect with FBO render to texture gives noise in result on Windows only
What is the correct way of doing the following:
Render a scene into a texture using a FBO (fbo-a)
Then apply an effect using the texture (tex-a) and render this into another texture (tex-b) using ...
0
votes
1answer
623 views
Multi-texturing in PyOpenGL using a GLSL shader
I would like to be able to combine two textures in a GLSL fragment shader. I am currently using PyOpenGL and everything i've done up to this point using shaders has worked fine.
I am running into ...
0
votes
1answer
85 views
How to add values to a floating point texture from within a fragment shader?
Is it possible in GLSL to add to a floating point texture from within a fragment shader?
For example if i just want to know how often a fragment shader is called for one pixel, can i write a fragment ...
1
vote
2answers
221 views
glsl update an specific row of a 2D texture
I am working with "render to texture" feature using FBOs and textures attached.
My problem is that in the fragment shader i don't know how to write to an specific row of the 2D-texture. I do have ...
1
vote
2answers
2k views
How to get texture coordinate to GLSL in version 150?
In GLSL version 110 i can get coordinate in gl_TexCoord[] but it's deprecated in 150.
OpenGL code:
shader.setupShaderFromFile(GL_VERTEX_SHADER, "t.vert");
...
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
297 views
GLSL procedural repetitive texturecoordinates cause visible seams due to mipmapping
I have a seamlessly tilable texture.
In the fragmentshader i calculate the texturecoordinates UVproc procedurally using a function that jumps from 1.0 to 0.0 at some point (here the texture should ...
1
vote
1answer
521 views
texture projection + perspective correction, getting the math right
I render animated geometry. In each frame, I want to texturemap the geometry with a screen-space-texture from the previous frame (projected onto the geometry as it was in the previous frame). so the ...
1
vote
1answer
264 views
OpenGL 4.2 use same texture as image and as sampler
Is it legal (and well defined) to use the same texture as an image2D as well as a sampler2D?
currently I use imageLoad() and imageStore() within the GLSL shader to write and load from a image2D. ...
1
vote
2answers
761 views
Why are the GLSL texture-coordinates in my shader not linear?
I have a problem with my glsl shaders on my Android 2.3.4 Tegra 2 device.
I want to do some calculations to create texture coordinates in the fragment shader in a glsl shader and noticed a problem ...
0
votes
1answer
554 views
Texture coordinates and optimizing GLSL shaders
I'm debating the pros and cons of passing texture coordinates to a GLSL shader in various ways.
I'm rendering a lot of instance data. I have one basic model, and then I pass a Transformation Matrix ...
1
vote
2answers
719 views
GLSL: unable to read texture from a FBO and render to another FBO with fragment shader
I'm trying to "read" the texture attached to a first FBO (fboA), modifying it (with fragment shader) and render to a second FBO (fboB).
I'm not able to figure it out, all I got is a black or white ...
4
votes
2answers
588 views
Texture lookup into rendered FBO is off by half a pixel
I have a scene that is rendered to texture via FBO and I am sampling it from a fragment shader, drawing regions of it using primitives rather than drawing a full-screen quad: I'm conserving resources ...
0
votes
1answer
215 views
Why do I have to switch Texture Unit in order for my Fragment Shader to recognize which texture to use?
I have this program for simple testing purpose. The program creates two 1-D textures and pass them to the shaders. The fragment shader is very simple. It just pulls out the texel at index 4 of the ...
1
vote
1answer
356 views
Plain mapping of texture to object in GLSL fragment shader
I have a problem with mapping of texture in fragment shader. I have a texture that has same size as window (I use part of scene rendered in previous pass, but I use brick texture in the example below) ...
1
vote
3answers
493 views
How would I use GLSL to generate a texture with all of the eye-space normals of every fragment in the frame, in RGB data (a la normal mapping)?
I need to somehow render a texture, like a screenshot of the scene, except instead of the colour data of the point behind each fragment, the normal is stored. It would generate a texture that looks ...
0
votes
0answers
1k views
Conversion shader code from GLSL to Cg shader in Unity 3D
I'm writing shader code for view-dependent texture mapping. As a 1st step, I'm writing shader for projective texturing. We calibrated 8 cameras and will map camera images by using projection matrix.
...
3
votes
1answer
4k views
OpenGL/GLSL - Writing A Smart Texture Shader
Let's say my texture is 256x256 pixel. It contains 16 sub-textures of 64x64 pixel. The sub-textures are to be rendered to quads. To increase performance I want to pass discrete values to the shader ...
1
vote
2answers
2k views
GLSL change uniform texture for each object
I'm currently trying to draw simple meshes using different textures (using C# and OpenTK). I read a lot about TextureUnit and bindings, and that's my current implementation (not working as expected) :
...
1
vote
1answer
2k views
Tiling texture in shader
I'm passing to vertex shader (glsl) 2 textures: from the screen and smaller, normalmap.
Normalmap is scaled for the screen size. So if first texture is 1152×864 pixels and normalmap is 256×256, it ...
3
votes
2answers
571 views
How do I tell if the active texture is texture id 0 in GLSL?
I have model assets that are untextured and I am tired of rendering them as black without lighting. This is because if texture id 0 is bound and I ask the sampler it tells me its black. Later leading ...
1
vote
1answer
2k views
Alternate gl_FragColor values from two textures in GLSL
I have two textures, cloud and hill, each with 512 x 512 size, and i intend to create a gl_FragColor output which will obtain the pixel values from the previous textures. In this case, i want to ...
2
votes
2answers
3k views
Accessing Multiple FBO Textures in GLSL to create another texture
I created 4 textures and attach them to FBO, named fbo_texture0 - fbo_texture3. All of them are successfully created, as given by the following screenshot:
image 1
Now, i wanted to create the 5th ...
1
vote
1answer
366 views
2
votes
0answers
2k views
Texture Projection in GLSL
I'm trying to implement texture projection based directly on this example at oZone3d. My environment is OpenGL ES 2.0 on Android 2.2.
Matrix math has never been my strong point and I suspect that ...
2
votes
3answers
3k views
OpenGL 3.3, GLSL 1.5: How to setup a Texture Buffer Object containing various texture2D?
I've been wondering whether it is possible to have an array of sampler2D in a GLSL 1.5 vertex shader.
I need to access 30 different 2d-textures from my vertex shader. I read that it is not possible ...
