Tagged Questions
1
vote
4answers
69 views
GLSL, combining 2D and 3D textures
I am trying to blend a 3D texture with a 2D one to make a terrain. The 3D texture has moss, sand, snow and the like, interpolated to enhance the illusion of heights. The 2D texture currently only has ...
0
votes
1answer
75 views
Why is there just garbage data in texture layers beyond 2048?
I am trying to use a texture_2d_array with up to 8192 layers. But all layers after the 2048th just contain garbage data (tested by mapping the individual layers on a quad to visualize the texture).
...
1
vote
0answers
140 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
228 views
OpenGL 3.3 multitexture: GL_TEXTURE1 and following are always black (Only GL_TEXTURE0 works fine)
Every texture after GL_TEXTURE0 (texture on slot 0) is black.
Fragment shader (sample code to check different textures by changing weights):
#version 330
uniform sampler2D g_ColorTex;
uniform ...
6
votes
1answer
173 views
Precise control over texture bits in GLSL
I am trying to implement an octree traversal scheme using OpenGL and GLSL, and would like to keep the data in textures. While there is a big selection of formats to use for the texture data (floats ...
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 ...
1
vote
1answer
230 views
Alpha Blending textures on two different passes using GLSL
What I have is a set of 9 squares in a 3x3 grid being rendered for testing this blending function. Here's the idea.
On Pass 1:
Bind texture1 (dirt)
Render the squares using tex1 = Dirt
On Pass ...
1
vote
1answer
273 views
GLSL: simulating 3D texture with 2D texture probelm
I came up with some code that simulates 3D texture lookup using a big 2D texture that contains the tiles. 3D Texture is 128x128x64 and the big 2D texture is 1024x1024, divided into 64 tiles of ...
1
vote
2answers
635 views
How to use GL_TEXTURE_2D_ARRAY in OpenGL 3.2
So I've tried following the docs, however I can't seem to get a texture 2D array to work.
-(GLint)buildTextureArray:(NSArray *)arrayOfImages
{
GLImage *sample = [GLImage ...
1
vote
2answers
203 views
OpenGL 3.2 - Implementing Multiple Textures [closed]
What would be the best way of implementing multiple textures in OpenGL? I've done some research online, and some methods to do this would be create a texture atlas with a lot of the required ...
1
vote
1answer
403 views
Texture mapping on a cylinder
I want to apply an uniform checkerboard texture to a cylinder surface of height h, and semiradii (a,b).
I've implemented this shader:
Vertex shader:
varying vec2 texture_coordinate;
float twopi = ...
0
votes
0answers
772 views
GLSL: Binding Texture Units > 8 to sampler
I'm trying to bind a texture unit to a uniform sampler2D shader variable. This works as expected for all texture units up to and including GL_TEXTURE8. I set the sampler location as follows (using ...
1
vote
2answers
424 views
GLSL 4.2 Image load and store & memoryBarrier
Using image load and store, i would like to do the following in GLSL 4.2:
vec3 someColor = ...;
vec4 currentPixel = imageLoad(myImage, uv);
float a = currentPixel.a/(currentPixel.a+1.0f);
vec4 ...
1
vote
0answers
145 views
Hack to implement something like ARB_texture_float when it isn't supported?
I'm doing some glsl processing on an integrated Intel GM965 graphics processor. For this, I need access to the full range floating point representation of a texture, rather than it be restricted to ...
3
votes
1answer
567 views
How exactly is GLSL's “coherent” memory qualifier interpreted by GPU drivers for multi-pass rendering?
The GLSL specification states, for the "coherent" memory qualifier: "memory variable where reads and writes are coherent with reads and writes from other shader invocations".
In practice, I'm unsure ...
2
votes
0answers
765 views
iOS - pass UIImage to shader as texture
I am trying to pass UIImage to GLSL shader. The fragment shader is:
varying highp vec2 textureCoordinate;
uniform sampler2D inputImageTexture;
uniform sampler2D inputImageTexture2;
void main()
{
...
4
votes
1answer
1k views
glUniform fails to set sampler value
I'm using OpenGL and GLSL to draw a texture over a simple mesh.
My problem is that when I am using glUniform1i to set the value of a sampler2D uniform, it was not set. For example in the in this ...
0
votes
1answer
392 views
Weird GLSL error with textures, why do I get an invalid operation when running a shader?
I have a simple GLSL 1.2 shader which accumulates values from five textures.
The shader compiles just fine.
My problem is , when rendering a simple triangle with this shader activated, nothing gets ...
0
votes
0answers
428 views
Why does this GLSL texture binding not work?
I'm relatively new with shaders and I'm wondering if I'm doing anything wrong (shader wise or c++ code wise) Also wondering how I can test with GLEW the support I am using. This is my current GLEW ...
0
votes
1answer
509 views
Why might I see this OpenGL spherical mapping artifact in GLSL?
I'm trying to map a globe texture onto a sphere. I'm using a plate carrée (Equirectangular) map projection, and there's this meridian which has this "blurring". What's strange is that the blurring ...
0
votes
1answer
180 views
Single Channel 10 bit images
Is there any way in OpenGL to load and read a 10 bit image? It doesn't have to be optimal efficiency on the GPU side. I just want to offload my CPU from converting everyting to 8bit before shuffling ...
2
votes
2answers
723 views
Omnidirectional Shadow Mapping
I've done environment mapping with cubemaps and shadow mapping in one direction with a 2D texture, but using a cube map for shadow mapping in all directions is giving me a lot of trouble.
I recently ...
4
votes
1answer
365 views
Selecting the face of a Cubemap in GLSL
Ok, I'm trying to understand how the face of a cubemap is selected using the coordinates supplied to textureCube(). From the spec, I gather the coord with the biggest magnitude defines the face.
For ...
0
votes
2answers
396 views
Efficient Random Texture Sampling in OpenGL ES 2.0 [closed]
Is there any efficient way to fetch texture data in a random way? That is, I'd like to use a texture as a look-up table and I need random access to its elements. Therefore I'd be sampling it in a ...
4
votes
1answer
1k views
sampler1D not supported in nVidia GLSL?
In the GLSL spec, and other sources about GLSL, sampler types are available in 3 dimensions: sampler1D, sampler2D, and sampler3D.
However when I try to compile GLSL programs using WebGL in Chrome ...
3
votes
2answers
578 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 ...
0
votes
1answer
1k views
Writing a texture from a frag shader?
So, I read in a texture into my fragment shader. I can output to "display"; but how do I output/write to another texture? Basically what I want to do is:
read in info from texture 1 // working
do ...
1
vote
2answers
410 views
GLSL Convolution with Large Kernel in Texture Memory
I'm very new to GLSL, but I'm trying to write convolution kernel with in a fragment shader for image processing. I was able to do this just fine when my kernel was small (3x3) using a constant ...
2
votes
2answers
579 views
glTexParameter and filtering in OpenGL and GLSL?
I have a couple questions about glTexParameter and filtering
1) What is the scope when applying a glTexParameter (specifically the filtering)? Here's a scenario:
Bind a texture. Set the filters to ...
1
vote
2answers
1k views
Can GLSL output to two/multiple textures at the same time?
I can get a shader to read in two textures but for output it seems there is only gl_FragColor. Is there any way to render to two different textures from one shader? I am using Processing and the ...
1
vote
2answers
1k views
GLSL Vertex Shader lookup-table question
I've got some difficulty debugging my program. I'm trying use an array as a lookup table to offset the vertex location in my vertex shader, but I can't even tell if I'm linking my array correctly. The ...
9
votes
4answers
12k views
Multiple textures in GLSL - only one works
My problem is getting more than one texture accessible in a GLSL shader.
Here's what I'm doing:
Shader:
uniform sampler2D sampler0;
uniform sampler2D sampler1;
uniform float blend;
void main( void )
...
1
vote
1answer
797 views
How can I repeat a 3x9 texture in OpenGL's GLSL?
I have a texture with a 3x9 repeating section. I don't want to store the tesselated 1920x1080 image that I have for the texture, I'd much rather generate it in code so that it can be applied correctly ...
2
votes
1answer
5k views
How do you handle multiple textures in an OpenGL indexed buffer array for use with a data-shader?
I'm attempting to implement this paper. I've have most of it down, but the part about sending arbitrary, non-geometric data to the shader for use in determining and displaying geometric edges is ...

