-4
votes
1answer
83 views

how to use pointers in GLSL

I need to send a set of data to shader like. //Application OpenGL uniform vec3 *variable; variable = (uniform vec3 *)malloc(80 * sizeof(uniform vec3)); //or uniform vec3 variable[80]; I ...
1
vote
1answer
55 views

OpenGL texture transformations

I'm a beginner to OpenGL and I'd like a simple introduction to using textures. For my application, I have no need of geometry, just some texture manipulation. I want to be able to scale, rotate, and ...
1
vote
1answer
114 views

Can a VBO be bound to multiple VAOs?

I'm trying to render a model's UV map by treating its texture coordinates as an array of vertex positions. I set up a VAO for the model which renders perfectly, then tried adding a second VAO and ...
1
vote
1answer
146 views

How much work should be done in shaders in opengl? [closed]

Should I avoid doing excess calculations in the shaders in opengl? For example: Things that need to be calculated every frame such as lighting. Should I do the calculations then send the results to ...
2
votes
2answers
96 views

Removing strings from the stack in C

I would like to store my GLSL shaders inside of my executable file for neatness, would having the string defined inside the function that will load them into shader objects get the strings removed ...
6
votes
1answer
270 views

OpenGL extensions, how to use them correctly in C and glsl

I am working on a game engine and it has evolved greatly. Because the engine needs to work on mac also, I am still using OpenGL 3.2 and GLSL 1.2 :-(. I use GLEW which I assumed would solve extension ...
6
votes
1answer
386 views

Drawing to FBO - sprite inverted up and down issue

Well, usage of FBO is wide and it helps make complex effects much easier. I set FBO and draw to it, then render FBO textured quad, without any problem, even test simple screen processing color shader. ...
0
votes
2answers
117 views

How could we get a variable value from GLSL?

I'm doing a project with a lot of calculation and i got an idea is throw pieces of work to GPU, but i wonder whether could we retrieve results from GLSL, if it is posible, how?
0
votes
2answers
556 views

OpenGL Core and Compatibility

I'm trying to learn OpenGL. I've got experience with C and C++, setting up a build environment, and all that jazz, but I'm trying to figure out a good starting point. I'm aware of the fixed ...
0
votes
1answer
1k views

opengl render to texture just see a black region

I am having some trouble in OpenGL, making a render to texture example work. At initialization, i generate a texture 'randtex' with random values of green and black. If i render this texture directly ...
2
votes
1answer
233 views

Light position coordinate in phong shading

I'm learning Phong shading and get some confuses: What coordinate of light position in Phong shading? (model space, modelview or what else?) According to this: ...
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
2k views

GLSL: rotation with a rotation vector?

I am trying to do skeletal animation with GLSL. For each bone, I have a translation(x,y,z) and a rotation(pitch, roll, yaw) (in degrees). I could construct a 4x4 matrix for each bone but that would ...
2
votes
1answer
2k views

Problems converting YV12 to RGB through GLSL

I'm trying to accomplish YV12 to RGB conversion mentioned in this post with GLSL shaders. My application loads a raw YV12 frame from the disk and tries to perform the conversion using GLSL shaders. ...
0
votes
2answers
249 views

What's the difference between GLSL and c?

I have three questions here: Is the Qt/3D API implemented by GLSL code? Is GLSL code compiled and linked as normal c/c++ code, and can it run on CPU (not GPU)? Why GLSL is better at rendering than ...
1
vote
2answers
247 views

Cannot access previously rendered texture from shader in OpenGL

I have an OpenGL program in which I am doing some augmented reality work. It works in 2 passes. First, it renders a frame using standard OpenGL calls. Next, it compares a frame from the camera to the ...
3
votes
1answer
1k views

OpenGL - Frame Buffer Depth Texture differs from Color Depth Texture

I'm doing shadow mapping in OpenGL - as such I've created a frame buffer object where I render the depth of the scene from the view of a light. glBindRenderbuffer(GL_RENDERBUFFER, color_buffer); ...
0
votes
4answers
282 views

Determining if a polygon is inside the viewing frustum

here are my questions. I heard that opengl ignores the vertices which are outside the viewing frustum and doesn't consider them in rendering pipeline. Recently I ran into a same post that said you ...
2
votes
1answer
272 views

Help understanding the use of dot product in this example?

Usually, I use the dot product of 2 vectors either to find out how perpendicular they are or the cosine of the angle between them. In this shader, a toon shader, the dot product is used on 2 colors ...
2
votes
2answers
957 views

What keywords GLSL introduce to C?

So we have in C: auto if break int case long char register continue return default short do sizeof double static else struct entry switch extern typedef float union for unsigned goto while enum ...
0
votes
1answer
387 views

Knowing which pixel or UV you are on with GLSL?

Right now I can obtain the color of the neighbouring pixel by doing color = texture2D(backBuffer, vec2(gl_TexCoord[0].x + i,gl_TexCoord[0].y + j); But how can I know what pixel that is or at least ...
2
votes
1answer
439 views

glUseProgramObjectARB invalid operation error

I'm getting an "invalid operation" error when trying to use glUseProgramObjectARB and I have no idea why. The shader programs are loading correctly, I'm fairly sure. This is shown on glGetInfoLogARB: ...
5
votes
4answers
2k views

HSL Image Adjustements on GPU

I have an application where the user should be able to modify an image with sliders for hue, saturation and lightness. All image processing is done on the GPU using GLSL fragment shaders. My problem ...
1
vote
1answer
882 views

GLSL Texturing Multiple Fragments

I am attempting to convert my fixed pipeline code (OpenGL ES 1.1) to one using a shader pipeline (OpenGL ES 2.0). However only one texture seems to work and I get the error: Validation Failed: ...
1
vote
4answers
647 views

How do I perform an HSL transform on a texture?

If I have an OpenGL texture, and I need to perform HSL modifications on it before rendering the texture, from what I've heard I need a shader. Problem is, I know nothing about shaders. Does anyone ...
0
votes
2answers
3k views

OpenGL GLSL interpolation

I try to implement point lights in OpenGL with GLSL. I send all the required data to the shaders. For simplicity I only use the diffuse light here. My example shows a huge triangle which I want to ...