Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
1answer
425 views

What's the best tool you can use to learn to program shaders?

I've recently been doing some DirectX 10 work and I'm looking to move to DirectX 11 and Shader Model 5.0. I've written a few very simple shaders in the past and I'm looking to broaden my horizons and ...
7
votes
1answer
172 views

Overview/showcase of shader techniques/uses for games

I am looking for resources that can provide me with a better understanding of what kind of things shaders are used for in games, what they can do, and maybe even more importantly, what they cannot. I ...
7
votes
4answers
636 views

Shader limitations

I've been tuning my game's renderer for my laptop, which has a Radeon HD 3850. This chip has a decent amount of processing power, but rather limited memory bandwidth, so I've been trying to move more ...
6
votes
3answers
262 views

OpenGL Shading Language Different Types of Variable (Qualifiers)

I've been writing programs using OpenGL. Recently, I started learning OpenGL Shading Language. I'm a newbie; so please be detailed in your answers. My questions are: 1. What are different types ...
5
votes
1answer
583 views

pixel perfect texture mapping with modern OpenGL

After deciding to try programming in modern OpenGL, I've left behind the fixed function pipeline and I'm not entirely sure about getting the same functionality I had before. I'm trying to texture map ...
5
votes
2answers
690 views

How should I organize switching between GLSL Shaders in OpenGL engine?

There were many questions in this topic, but I didn't find clear answer anywhere, so I ask: What seems to be a better idea? To have a one shader program with a lot of uniforms telling what type ...
5
votes
4answers
9k views

OpenGL ES 2.0 Rendering with a Texture

The iPhone SDK has an example of using ES 2.0 with a set of (Vertex & Fragment) GLSL shaders to render a varying colored box. Is there an example out there on how to render a simple texture using ...
5
votes
3answers
2k views

What options are there for GLSL shader development on OS X?

Apple's Shader Builder is not terribly advanced. I was wondering if there are any better choices for OS X other than running something under bootcamp.
4
votes
2answers
144 views

GLSL/C++: Arrays of Uniforms?

I would like to leave OpenGL's lights and make my own. I would like my shaders to allow for a variable number of lights. Can we declare an array of uniforms in GLSL shaders? If so, how would we set ...
4
votes
4answers
116 views

Fast, inaccurate sin function without lookup

For an ocean shader, I need a fast function that computes a very approximate value for sin(x). The only requirements are that it is periodic, and roughly resembles a sine wave. The taylor series of ...
4
votes
1answer
298 views

What is the purpose of using glBindAttributeLocation in GLSL?

I tried to call glGetAttribLocation without binding any attrib locations and it seemed to work. So I can always cache the attrib locations in array if I want to have instant access. What is the ...
4
votes
2answers
2k views

Why does my OpenGL Phong shader behave like a flat shader?

I've been learning OpenGL for the past couple of weeks and I've run into some trouble implementing a Phong shader. It appears to do no interpolation between vertexes despite my use of the smooth ...
4
votes
2answers
152 views

GLSL 2.0 attribute question

What does the [] operator do when addressing an attribute vec4? attribute vec4 a_MatrixWeights; ... foo(float weight); ... void main() { foo(a_MatrixWeights[0]); foo(a_MatrixWeights[1]); ...
4
votes
1answer
738 views

Passing own struct into opengl es 2.0 shader

I want to try a lighting example from the book OpenGL ES 2.0 Programming Guide. In the shader they have made two structures. struct directional_light { vec3 direction; // normalized ...
4
votes
3answers
5k views

OpenGL ES 1.x Shaders

I am trying to find examples of how to implement a simple shader for OpenGL ES 1.x (specifically for the iPhone). I have never worked with shaders before, but I do understand what they are used for. ...
4
votes
5answers
867 views

RGB filters for different forms of color blindness

My father is color blind and given that I work in games where the visuals are important, I've always wanted to write a filter for screen shots (or even some type of shader) that emulated different ...
3
votes
3answers
80 views

Is it possible to get this “chroma-shift” effect with OpenGL shaders

I'd like to be able to produce this effect, to be specific, the color-crawl / color-shift. Is this possible with OpenGL shaders, or do I need to use another technique? I'm new to OpenGL and I'd ...
3
votes
2answers
448 views

Creating blur filter with a shader - access adjacent pixels from fragment shader?

I want to create a blur effect using a fragment shader in OpenGL ES 2.0. The algorithm I am interested in is simply an averaging blur - add all adjacent pixels to myself and divide by 9 to normalize. ...
3
votes
2answers
158 views

Writing the correct value in the depth buffer when using ray-casting

I am doing a ray-casting in a 3d texture until I hit a correct value. I am doing the ray-casting in a cube and the cube corners are already in world coordinates so I don't have to multiply the ...
3
votes
1answer
279 views

draw the depth value in opengl using shaders

I want to draw the depth buffer in the fragment shader, I do this: Vertex shader: varying vec4 position_; gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex; position_ = ...
3
votes
2answers
152 views

OpenGL: How to check if the user GFX card can render with my shader?

I need to make a fallback if the user doesnt support the shader i have made to render some things faster. So, how exactly do i check these things? I know some of the shader functions are not ...
3
votes
4answers
97 views

Later OpenGL specs - more than shaders?

I've been programming OpenGL almost entirely in the 2 specification, and don't know much about the 3 and 4 specs. I read on some forum that the later specs of OpenGL are basically just feeding data to ...
3
votes
2answers
103 views

Is there a HLSL minifier like there are Javascript minifiers?

Is there a HLSL packer/minifier? (And a wish of potentially enhancing the performance of the shader?)
3
votes
2answers
273 views

GLSL break command

Currently I am learning how to create shaders in GLSL for a game engine I am working on, and I have a question regarding the language which puzzles me. I have learned that that in shader versions ...
3
votes
2answers
496 views

ES 2.0 Multi-Pass & Render to Texture Implementation

I need help setting up multi-pass rendering with OpenGL ES 2.0 on the iPhone. I haven't been able to find an example which implements both rendering to a texture and multi-pass shading. I'm looking ...
3
votes
3answers
269 views

Using shader for calculations

Is it possible to use shader for calculating some values and then return them back for further use? For example I send mesh down to GPU, with some parameters about how it should be modified(change ...
3
votes
3answers
3k views

Problem mapping textures to VBO in OpenGL

I'm having trouble getting a texture to map onto geometry properly with OpenGL. In fact I seem to have even broken the colour interpolation that used to work fine. I've created a test case in C99 that ...
3
votes
3answers
349 views

Is it possible to use a shader to find the “difference” between two textures? (XNA/HLSL)

I have made a simple webcam based application that detects the "edges of motion" so draws a texture that shows where the pixels of the current frame are significantly different to the previous frame. ...
3
votes
4answers
1k views

XNA SpriteBatch and BasicEffect not compatible?

I would like to control ambient lighting for a 2D SpriteBatch rendered set of graphics on a global scale. I realise I can do this by blending the color passed into SpriteBatch.Draw but I'd rather do ...
3
votes
4answers
3k views

Jogl Shader programming

I just started Shader programming(GLSL) and created a few with RenderMonkey. Now I want to use this Shaders in my java code. Are there any simple examples of how I do that?
2
votes
1answer
40 views

Setting up and using OpenGL 3.0+ with Mac OSX Lion(10.7)

I am trying to set up an OpenGL 3.0+ context within XCode 4. As you can see talking about shaders here at the developer website the example it uses is OpenGL 2.0. In Appendix B it does talk about ...
2
votes
1answer
90 views

GLSL 1.5 Simple Geometry shader

I'm trying to write a simple geometry shader what just passes through vertices before attempting to modify stuff. My vertex shader is #version 150 core in vec3 inPosition; in vec4 inColor; out vec4 ...
2
votes
1answer
146 views

OpenGL glLinkProgram returns false but info log is empty; checked everything

I must admit this is my first time implementing shaders, previously I have only worked with fixed function pipeline; however, though I am certain that everything I did is correct - there must be an ...
2
votes
2answers
195 views

Getting the true z value from the depth buffer

Sampling from a depth buffer in a shader returns values between 0 and 1, as expected. Given the near- and far- clip planes of the camera, how do I calculate the true z value at this point, i.e. the ...
2
votes
1answer
223 views

Texture coordinates for dynamic terrain - OpenGL

Can someone please describe a common technique used to calculate texture coordinates for a terrain that dynamically changes every frame? I have a perlin noise function implemented in a vertex shader ...
2
votes
2answers
197 views

Fragment shaders on ATI cards versus NVIDIA ones

I use this fragent shader (inspired from some tutorial found on the NVIDIA site some time ago). It basically compute bi-linear interpolation of a 2D texture. uniform sampler2D myTexture; uniform vec2 ...
2
votes
1answer
377 views

applying texture to Cube, different texture on each face of cube

I'm trying to apply different texture on cube with shaders using samplerCube and textureCube. But I'm not able to get texture drawn on faces of cube only single color is appearing. Screenshots of ...
2
votes
1answer
231 views

How to post-process image with shaders in OpenGL?

Shaders can not read data from framebuffer, they can pass data only forward by rendering pipeline. But for post-processing it is needed to read rendered image. I'm going to resolve this as following: ...
2
votes
2answers
1k views

How to tell if a computer supports OpenGL 2.0? (I want to write shaders)

I'm interested in writing OpenGL shaders, but am not sure if my graphics card is good enough to support this or if my system is configured correctly to use the software alternative (Mesa). How do I ...
2
votes
2answers
332 views

HLSL Multi-texturing with Fog problem in Direct3D

hey guys I am trying to implement a multi-texturing and fog on some terrain in my demo, but apparently i am going wrong somewhere because the texturing is not visible, the only thing that is being ...
2
votes
1answer
137 views

Is it possible to drop a triangle from being rendered using vertex shaders?

In a pixel shader you can discard a pixel but I would imagine even a fast-fail shader called for every pixel takes a non-trivial time? Is there any way a vertex shader can discard an entire ...
2
votes
1answer
478 views

Is there any example on the web how Collision Detection can be implemented with Shaders?

Is there any OpenGL, OpenGL ES or WebGL code example on the web how 3D Collision Detection can be implemented with Shaders (preferably GLSL)? Thank you.
2
votes
4answers
133 views

Do you have good book tiltles to give me about video game programming?

I already program in C#, Java and C++ and would like to know if you know good books (wether about OpenGL or DirectX and with any of these languages) that cover video game development and that include ...
2
votes
3answers
188 views

Opengl Games: Do i have to know 3d related math to create good opengl games?

I read about OpenGL and about nvidia-cg-toolkit and other shaders, all contains lots of math problems and math formulas for effects and such. I want to be able to make proper 3d games that use the ...
2
votes
1answer
799 views

How to use shaders in OpenGL ES with iPhone SDK

I have this obsession with doing realtime character animations based on inverse kinematics and morph targets. I got a fair way with Animata, an open source (FLTK-based, sadly) IK-chain-style ...
2
votes
2answers
329 views

OpenGL Shading Language backwards compatibility

I've noticed that my GLSL shaders are not compilable when the GLSL version is lower than 130. What are the most critical elements for having a backward compatible shader source? I don't want to have ...
2
votes
1answer
139 views

Cg shaders not being applied after switch to glVertexPointer

My renderer used to render geometry with the old fixed function stuff using glBegin/glEnd. After switching it to use vertex arrays via glVertexPointer et. al., my Cg shaders stopped showing up. If i ...
2
votes
1answer
508 views

Problem with HLSL looping/sampling

I have a piece of HLSL code which looks like this: float4 GetIndirection(float2 TexCoord) { float4 indirection = tex2D(IndirectionSampler, TexCoord); for (half mip = indirection.b * 255; mip ...
2
votes
2answers
2k views

GLSL fragment shader newb question

the following simple fragment shader code fails, leaving me with an uninformative message in the log (ERROR: 0:1: 'gl_Color' : syntax error syntax error): void main() { vec4 ...
2
votes
3answers
517 views

Graphics card for OpenGL shader development

I need some hardware for high bandwidth video processing using GLSL. Could anyone recommend me the best GPU for the job? My requirements (most to least important): fits into laptop good fragment ...

1 2 3 4