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 ...
1
vote
1answer
329 views

Alpha-channel all 1.0 in WebGLRenderTarget when reading rendered image for post-processing

I am using Three.js to render the world to a WebGLRenderTarget. My world does not full the whole screen and thus, has transparent background. The purpose is to provide alpha-channel aware image ...
1
vote
1answer
202 views

GLSL texelFetchOffset works with isampler2D but not usampler2D?

In a fragment shader, the following compiles fine: uniform isampler2D testTexture; /* in main() x, y, xoff and yoff are declared as int and assigned here, then... */ int tmp = ...
1
vote
1answer
1k views

GLSL textureCube and texture2D in same shader

I can't seem to be able to have both texture2D() and textureCube() in one shader. When I do, nothing shows up and there is no error. I tried this both with my own shader loader and the Apple GLSL ...
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 ...