0
votes
0answers
9 views

Unity - Help Shader texture coordinate

I am making a 2D water shader. For this, I use GrabPass which works well. But I am facing an issue. If I want to display the GrabPass texture I have to create my own texture coordinates because ...
0
votes
1answer
36 views

OpenGL Shaders Generate Colors

I have a sprite 10x10 pixels. How can i change colors with shaders-programm in real-time. All the blue color on the sprite turned to green. All the green color on the sprite turned to white. ETC... ...
0
votes
0answers
28 views

Texture not showing up with SOIL and OpenGL 3.2

I am using SOIL to load textures, and trying to "display" them on a triangle using OpenGL 3.2. I am having a problem, though: nothing is showing up. This is my code: #include <iostream> ...
0
votes
1answer
71 views

OpenGL DrawElements with Vertex Buffer Object and GLSL Shader to GBuffer not working

I'm drawing a plane with a diffuse and normal map to a gbuffer. I can confirm that the plane's textures and the gbuffer-fill shader are properly initialized and compiled (no errors). I get the ...
1
vote
1answer
42 views

Triangulate a quad with a hole in it using tessellation

Is it possible to triangulate a quad with a hole in it using tesselation shader? For example, Imagine I have a Quad. Then I want to make a hole to the center of the quad. There need to be a lot ...
1
vote
1answer
48 views

GLSL - Weird syntax error “<”

I'm trying to use a shader but it keeps telling me this error on both fragment and vertex shader: error(#132) Syntax error: "<" parse error vertex shader varying vec4 diffuse; varying vec4 ...
1
vote
1answer
56 views

Rendering from VBO with glDrawElements has a weird result

I just started to implement the librocket (an UI lib that generates mesh from HTML) one requirement is the RenderInterface. The lib basically sends your class that inherits from RenderInterface the ...
0
votes
2answers
46 views

OpenGL - Texture mapping in vertex or fragment shader?

Is there texture of an object/triangles mapped in the fragment shader or the vertex shader? Whether if it is on the vertex or fragment shader, if you are programming shaders it's something that you ...
0
votes
1answer
54 views

GLSL Normal Mapping (Areas With 0.0 Lambert Gets Lit)

when i use the model's normal , the result is fine ( there are dark areas and lit areas , as i would expect from a simple lambert diffuse shader ) but when i use a normal map , the dark areas gets ...
-1
votes
3answers
95 views

OpenGL Shaders - Normals in Gouraud and Phong shading?

I can't seem to understand the OpenGL pipeline process from a vertex to a pixel. Can anyone tell me how important are vertex normals on these two shading techinques? As far as i know, in gouraud, ...
0
votes
1answer
36 views

using multiple programs with opengl [closed]

I'm working on an OpenGL program in c++ with the freeglut library, and I'm having trouble getting my programs to work correctly. I create some buffers and vertex arrays and also create two programs, ...
1
vote
0answers
60 views

error creating shader type 35663

i want to learn OpenGl and i follow the tutorial in http://ogldev.atspace.co.uk/ nicely tutorial 1,2 have been passed. but on the tutorial 3,that is make a triangle i got error. the code is compile ...
0
votes
1answer
27 views

default uniform (array) values

Rather than explicitly setting uniform data for a GL program, I set 'defaults' in a simple test (fragment) shader with: uniform vec3 face_rgb[] = vec3[] ( vec3(0.0, 0.0, 1.0), vec3(0.0, 1.0, ...
1
vote
1answer
69 views

GLSL glass effect plus depth peeling

I'm working on rendering a scene that potentially has multiple intersecting transparent objects. This makes the standard method of sorting and drawing back to front problematic (even sorting triangles ...
0
votes
1answer
56 views

Shader program to Vertex + Fragment shader

I am studying a tutorial which uses this shader: struct VSInput { vec3 Position; vec2 TexCoord; vec3 Normal; }; interface VSOutput { vec3 WorldPos; vec2 TexCoord; vec3 Normal; }; ...
0
votes
1answer
30 views

LWJGL OpenGL application limited at ~35 fps

I ported a volume renderer from c++ using glm and glut to LWJGL, java. The volume renderer uses a shader with a 3d texture. For some reason though the fps sticks at ~35 fps. I tried trimming the ...
0
votes
0answers
73 views

Particle System error

Im working in Particle System Class from this tutorial Particles - Anton's OpenGL 4 Wiki - Dr Anton Gerdelan Code: //Pixel Shader // shader to update a particle system based on a simple ...
0
votes
1answer
127 views

imageStore() doesn't work on AMD hardware (OpenGL 4.2)

I tried this code on Nvidia hardware without any problem but on AMD, the imageStore() function doesn't seem to do anything (No GL error is thrown though, I checked) Shader: #extension ...
0
votes
0answers
111 views

Opengl deferred lighting shader

I just started to learning OpenGL 3.1 and I'm trying to implement deferred shading to my engine(framework?). I wrote simple shaders for first stage, lighting stage and deferred stage. Lighting stage ...
1
vote
0answers
134 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
0answers
52 views

OpenGL glsl: can't pass data from program to shader

I am writing a program that sends data from a function in a C++ program to a vertex shader. A program ID is passed into the function as follows: void setUpOrtho(GLuint program) { glUseProgram( ...
1
vote
2answers
106 views

Depth as distance to camera plane in GLSL

I have a pair of GLSL shaders that give me the depth map of the objects in my scene. What I get now is the distance from each pixel to the camera. What I need is to get the distance from the pixel to ...
0
votes
0answers
32 views

Won't map texture correctly if I'm using only vertex program (NVIDIA Cg)

I'm using only a Cg vertex programs on my OpenGL engine. I don't need/want to use a fragment program, for that reason I'm binding the texture according to the fixed function steps. But there's an ...
1
vote
1answer
72 views

OpenGL performance overhead from frequently swapping between two shaders

I have a situation where I have two particular shaders: The first shader casts shadows from all objects in a scene and renders to a single fullscreen 8 bit shadow texture. The glsl code is very ...
0
votes
1answer
68 views

Why this GLSL code don't work on old Intel card (openGL 2.1)?

As we know, almost all 3D software has an XYZ-axis in the view section. Suppose to draw a coordinate axis like that. Here is my method. Firstly, there is a function named drawOneAxis() used to draw ...
0
votes
0answers
41 views

glDrawElements() with VAO and multiple attribute pointers failing to finish

I'm having a problem with getting the glDrawElements(...) function. Everything in my program runs fine, but when it gets to glDrawElements(...) it never finishes. Everything in my code looks correct, ...
0
votes
0answers
109 views

OpenGL fragment shader has too many instructions

I'm writing a Level Editor in C# and OpenTK, and wanted to see if a more complex shader would work fine. So I grabbed this mine craft shader here https://www.shadertoy.com/view/MdlGz4. But I can't ...
0
votes
0answers
110 views

The specular light does not work correctly using OpenGL and GLSL shaders

I have written a small test program using the OpengL API displaying a simple lighted box in rotation. I use ambient, diffuse and specular light. Here's a picture of my render : As you can see the ...
0
votes
1answer
86 views

Why use GLSL along with OpenGL?

While trying to get the gist of OpenGL, I eventually ran into GLSL. I have used OpenGL before for miminal things, like triangles and colors (since I haven't learnt much yet), but when I found out ...
0
votes
0answers
108 views

OpenGL GLSL Program Linking Annoying Issue

I'm using XCode on Mountain Lion. Libraries: OpenGL Framework, GLEW, GLFW Running under OpenGL 3.2 in Core Profile. Everything works ok, Fragment Shader and Vertex Shader compilation returns success ...
0
votes
2answers
118 views

How to change the color of points using shaders

I have an application where I draw a bunch of points on a GLUT window. I have a vertex shader and a frag shader, which I gave a color input. My vertex shader looks like: #version 120 attribute vec2 ...
3
votes
2answers
110 views

How to apply luminosity uniformly on hair particules with OpenGL using GLSL shaders?

I have created a hairstyle with Blender 2.66 using hair particle system. This looks like this : As you can see, the luminosity has been applied on line fragments. After conversion, I have exported ...
0
votes
0answers
82 views

Updating Attribute variables in Vertex Shader(glVertexAttrib3f) working as glVertex

I am having trouble using Attribute variables for getting a value into vertex shader. I want to provide the geometry shader with one of the points from the previous primitive(line) for some ...
0
votes
0answers
103 views

GLSL textureCube fails

I have a fairly simple fragmentshader that does not work. It appears to have something to do with the textureCube method. This is the fragment shader: in vec3 ReflectDir; in vec3 RefractDir; ...
5
votes
1answer
55 views

OpenGL Binary Formats

I've been googling around OpenGL binary formats and what they actually are/mean. So far I've not had much success. I know I can fetch the number and set of formats as follows: ...
1
vote
1answer
78 views

The luminosity does not work using GLSL shaders

The goal of my program is to render a simple cube illuminated by a light point using GLSL shaders. The problem is that my cube stays in black as if lighting properties are disabled. I've been ...
0
votes
1answer
122 views

OpenGL VBO drawing problems

I'm having a problem currently with a particle engine I'm making. With the engine you can add more than one emitter in to the engine, the idea being that each particle system can emit its own ...
2
votes
1answer
83 views

GLSL - Binding Attributes to Semantics

I've seen a number of questions and answers here on stack overflow about this topic. From these answers, I've come up with a possible solution to binding GLSL Attributes to user-defined Semantics. I ...
0
votes
1answer
91 views

Incorrect rotations using openGL GLM and shaders

The goal of my program is to display a simple colored triangle rotating on the Y axis without any translation. I'm using the GLM library. The problem is that the transformations of my triangle are not ...
0
votes
1answer
106 views

How get few vertices on geometry shader in GLSL

I need get 4 vertices after vertex shader processing. Primitive(quad) drawing with target: GL_TRIANGLE_STRIP. My code: layout(lines_adjacency) in; layout(triangle_strip, max_vertices = 4) out; in ...
3
votes
1answer
129 views

OpenGL Shadow Map

I am trying to do a basic shadow map but for some reason It doesn't render properly. Video of the Problem I render the house using a flat shader: int shadowMapWidth = WINDOW_SIZE_X * ...
0
votes
2answers
109 views

Bad openGL version for GLSL shaders

I just want to make an OpenGL program using GLSL shader. But when I'm compiling it I have the following error message : Version number not supported by GL2. Here's my vertex shader code : #version ...
2
votes
1answer
114 views

Using shaders to implement field of view on a 2D enviroment

I'm implementing dynamic field of view. I decided to use shaders in order to make the illumination better looking and how it affects the walls. Here is the scenario I'm working on: ...
2
votes
1answer
122 views

glGetAttribLocation returns -1 when retrieving existing shader attribute

I'm trying to pass in attributes to my vertex shader but for some reason it keeps giving me a -1 on the 3rd attribute location I'm asking openGl to retrieve via glGetAttribLocation(). Currently it ...
0
votes
1answer
179 views

Seamless Tilemap Rendering C++

I am attempting to create a seamless 2D tilemap renderer in C++. The goal is to have little to no loading screens as the player progresses from each map to the other. For example: Each square in the ...
1
vote
2answers
39 views

Regarding arrays in layout std140 uniform block for OpenGL

According to specification: If the member is an array of scalars or vectors, the base alignment + * and array stride are set to match the base alignment of a single + * array ...
0
votes
1answer
24 views

Regarding the organization of data for OpenGL

Is it appropriate to have 1 vertex array object for every model in the scene? How many VAOs are you allowed to have?
0
votes
1answer
172 views

Simple OpenGL shader gives an error in LibGDX (no uniform with name diffuseTexture)

I don't understand why when building I get an error when setting this simple shader to an imported mesh (.obj mesh), the error I get is: "no uniform with name 'diffuseTexture' in shader" The thing ...
-1
votes
1answer
88 views

Interpolation of surface normals on the face of a triangle and Goroud shading [closed]

My question is detailed at this link. I linked it instead of copy paste because here I can't seem to get the fancy math symbols to show properly here. Thoughts?
0
votes
0answers
59 views

Generate one texture makes shader not work

Shader code: #extension GL_ARB_texture_rectangle : enable uniform sampler2D tex0; uniform sampler2DRect tex1; uniform int sampler_type; void main(void){ vec4 col; if ( sampler_type == 0 ...

1 2 3 4 5 10