Tagged Questions
A shader is a program to perform calculations on geometry or pixel data in computer graphics. With the rapid progress and availability of consumer GPUs during the last decade, an initially software-only solution for high-end RenderMan workstations became widely available. Today, the term is mostly associated with GLSL, HLSL, or Cg, which allow convenient, hardware agnostic high-level programmability on consumer GPUs.
43
votes
5answers
612 views
When transforming textures (drawn as flat 3D objects) to mimic depth, black lines appear randomly
We are developing a top-down RPG using XNA. Recently we bumped into a setback when writing the code to display our maps. When drawing the map, top-down view with a normal transformation matrix, ...
24
votes
9answers
5k views
OpenGL 4.x learning resources
I know there are some question about learning OpenGL.
The difference is that I want to learn OpenGL 4.0 Core profile (no immediate functions). Preferably with good portion of SL knowledge.
And I do ...
20
votes
4answers
2k views
What is state-of-the-art for text rendering in OpenGL as of version 4.1?
There are already a number of questions about text rendering in OpenGL, such as:
OpenGL live text-rendering
But mostly what is discussed is rendering textured quads using the fixed-function ...
14
votes
1answer
427 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 ...
14
votes
9answers
2k views
Beginning Shader Development
I want to get started doing some game development using Microsoft's XNA. Part of that is Shader development, but I have no idea how to get started. I know that nVidia's FX Composer is a great tool to ...
13
votes
1answer
322 views
how to use android camera with OpenGL ES to work?
I want to use the OpenGL ES for the Android camera preview and Save the captured Image.
I like to use the OpenGL ES in Android camera to give some effect to the Android camera. So please anyone tell ...
12
votes
2answers
5k views
Random / noise functions for GLSL
As the GPU driver vendors don't usually bother to implement noiseX in GLSL, I'm looking for a "graphics randomization swiss army knife" utility function set, preferably optimised to use within GPU ...
11
votes
4answers
1k views
How can I use a Shader in XNA to color single pixels?
I have a standard 800x600 window in my XNA project. My goal is to color each individual pixel based on a rectangle array which holds boolean values. Currently I am using a 1x1 Texture and drawing ...
10
votes
3answers
2k views
Shader IDE for GLSL or HLSL
Just wondering what you would class as the best IDE for shaders.
I have used RenderMonkey in the past but it is no longer supported by AMD. Had a look and only thing close to it is NVidia's FX ...
10
votes
4answers
3k views
What are Vertex and Pixel shaders?
What are Vertex and Pixel shaders?
What is the difference between them? Which one is the best?
9
votes
1answer
438 views
OpenGL 3.1-4.1 new and deprecated features
I've been working with OpenGL for about a year now, and have learned a lot of stuff. Unfortunatly the way I learned it was the old pre 3.x way, meaning immediate mode, default shaders, matrix stacks, ...
8
votes
1answer
781 views
Explicit vs Automatic attribute location binding for OpenGL shaders
When setting up attribute locations for an OpenGL shader program, you are faced with two options:
glBindAttribLocation() before linking to explicitly define an attribute location.
or
...
7
votes
1answer
190 views
Some simple XNA/HLSL questions
I've been getting into HLSL programming lately and I'm very curious as to HOW some of the things I'm doing actually work.
For example, I've got this very simple shader here that shades any teal ...
7
votes
2answers
1k views
OpenGL ES 2.0 shader examples for image processing?
I am learning shader programming and looking for examples, specifically for image processing. I'd like to apply some Photoshop effect to my photos, e.g. Curves, Levels, Hue/Saturation adjustments, ...
6
votes
4answers
278 views
Learning modern OpenGL
I am aware that there were similar questions in past few years, but after doing some researches I still can't decide where from and what should I learn.
I would also like to see your current, actual ...
6
votes
1answer
87 views
Are OpenGL shaders compiled on the GPU or the CPU? How does binary output vary by GPU manufacturer?
First; how are OpenGL shaders compiled? Are they compiled on the CPU, or the GPU, or does it vary by implementation? Do different vendors have different binary outputs; if so, is it possible to ...
6
votes
2answers
272 views
OO architecture for rendering in shader based games
I keep hitting this problem when building game engines where my classes want to look like this:
interface Entity {
draw();
}
class World {
draw() {
for (e in entities)
e.draw();
}
}
...
6
votes
2answers
246 views
GLSL multiple shaderprogram VS uniforms switches
I'm working on a shader manager architecture and I have several questions for more advanced people.
My current choice oppose two designs which are:
1. Per material shader program
=> Create one shader ...
6
votes
1answer
4k views
Shader for Android OpenGL ES
Is it possible to use vertex or pixel shaders in android app?
please give an example if possible of setting up shader.
6
votes
2answers
151 views
Computing shading through a transparent surface
In ray tracing, I want to calculate the shading for a point where my ray hit. I "draw" lines to all light sources and check if they are blocked by objects or not. If they are not blocked then I ...
6
votes
5answers
979 views
C++ - tangent, binormal and other shader-related things
Many of the mapping technics including normal bump mapping, parallax mapping and others require the special per-vertex tangent-space basis (tangent, normal, binormal / bitangent).
This obviously ...
6
votes
1answer
540 views
In OpenGL is there a way to get a list of all uniforms & attribs used by a shader program?
I'd like to get a list of all the uniforms & attribs used by a shader program object. glGetAttribLocation() & glGetUniformLocation() can be used to map a string to a location, but what I ...
5
votes
2answers
185 views
Ensure GLSL compatibility
How can ensure that GLSL shaders are compatible with most modern cards?
I've got a software where I use GLSL code from here. But even though I've added #version 120 to the beginning of my final ...
5
votes
1answer
102 views
per-fragment lighting coordinate system
I'm developing an OpenGL 2.1 application using shaders and I'm having a problem with my per-fragment lighting. The lighting is correct when my scene initial loads, but as I navigate around the scene, ...
5
votes
1answer
308 views
Unexplainable behavior when using uniform sampler2d[]
I'm sorry but this will require a little bit of explanation. I'm trying to make it as simple as possible.
What I want to do:
I'm visualizing height fields. A height field may have multiple patches. A ...
5
votes
2answers
399 views
What is the correct file extension for GLSL shaders?
I'm learning glsl shading and I've come across different file formats. I've seen people giving their vertex and fragment shaders .vert and .frag extensions. But I've also seen .vsh and .fsh ...
5
votes
3answers
747 views
What is the most efficient way to implement a convolution filter within a pixel shader?
Implementing convolution in a pixel shader is somewhat costly as to the very high number of texture fetches.
A direct way of implementing a convolution filter is to make N x N lookups per fragment ...
5
votes
2answers
227 views
Use index as coordinate in OpenGL
I want to implement a timeseries viewer that allows a user to zoom and smoothly pan.
I've done some immediate mode opengl before, but that's now deprecated in favor of VBOs. All the examples of VBOs ...
5
votes
2answers
709 views
OpenGL ES 2.0 multiple meshes? (just Real World Examples)
I`m a little confused about this point.
Everything that I found in books, blogs, forums and even in OpenGl specs just talk about a very abstract techniques. Nothing about real world examples.
And ...
5
votes
5answers
3k views
How do I get the current color of a fragment?
I'm trying to wrap my head around shaders in GLSL, and I've found some useful resources and tutorials, but I keep running into a wall for something that ought to be fundamental and trivial: how does ...
5
votes
1answer
512 views
Pixel bender shaders with multiple outputs in flash?
According to the pixel bender specs a shader can have one or more outputs. The pixel bender toolkit, whose "export to flash" option tends to be preety strict about the flash specific do's and dont's, ...
5
votes
1answer
2k views
What are all the different HLSL sampler types for?
I'm working with DX9/SM3 at the moment, and the MSDN documentation on HLSL samplers seems to be sorely lacking in explaining how to use the different sampler types. What's worse is they try to cover ...
4
votes
2answers
95 views
Should I use a vertex shader in this situation?
I'd like to create a motion blur effect by rendering and additively blending moving objects at multiple points in their trajectory over the course of a frame.
I was thinking that the calculation for ...
4
votes
1answer
69 views
How to blur the outcome of a fragment shader?
I'm working on a shader that generates little clouds based on some mask images. Right now it works well, but i feel the result is missing something, and i thought a blur would be nice. I remember a ...
4
votes
1answer
114 views
using geometry shader to create new primitives types
Is it possible to output new primitive type from geometry shader other than was input? I'd like to input a point and render a triangle. The point would be used just as center for this triangle. If ...
4
votes
1answer
154 views
HLSL Point Light Problem
(First question, so I hope I'm doing this correctly.)
Hi, I've recently started learning HLSL after deciding that I wanted better lighting than what BasicEffect offered. After going through many ...
4
votes
1answer
196 views
Draw edges of a polygon with OpenGL shaders
I was wondering if it was possible to draw the edges of a rendered polygon with a specific color using a fragment shader, as in this example picture:
Or should I just render those separately?
4
votes
1answer
324 views
Blending multiple textures in GLSL
This is long but I promise it's interesting. :)
I'm trying to mimic the appearance of another application's texturing using jMonkeyEngine. I have a list of vertices, and faces (triangles) making up a ...
4
votes
2answers
223 views
Per-Vertex Normals from perlin noise?
I'm generating terrain in Opengl geometry shader and am having trouble calculating normals for lighting. I'm generating the terrain dynamically each frame with a perlin noise function implemented in ...
4
votes
3answers
468 views
OpenGL Shader Compilation Issue — Unexpected EOF
So I decided to try writing a simple OpenGL app using Java, just to see how it compared to my other efforts, and I'm running into an issue where my shaders refuse to compile. They really couldn't get ...
4
votes
1answer
174 views
Why does GLSL lighting code shift the light spot with the camera?
I am trying to make a custom light shader and was trying a lot of different things over time.
Some of the solutions I found work better, others worse. For this question I'm using the solution which ...
4
votes
1answer
229 views
Computing normals from terrain elevation data in fragment shader
The application loads terrain elevation data into floating point textures. Textures are then rendered on a float color buffer (using *GL_ARB_color_buffer_float*).
The first pass is to get an overall ...
4
votes
3answers
163 views
Increase precision in DirectX with high range positions?
I am creating an little game in c++ with directx 9 with a randomly created world and have an issue when the player goes far from the 3d origins (0,0,0) 3d rendering become very imprecise causing ...
4
votes
1answer
717 views
Using the geometry shader for instancing
So I want to draw lots of quads (or even cubes), and stumbled across this lovely thing called the geometry shader.
I kinda get how it works now, and I could probably manipulte it into drawing a cube ...
4
votes
1answer
644 views
How to implement this rotating spiral in WebGL? [closed]
Could somebody try to implement given animation into WebGL shader example? It would be great for people learing WebGL like myself.
Source: http://dvdp.tumblr.com/post/2664387637/110109
4
votes
2answers
964 views
OpenGL Shadow Mapping using GLSL
I am trying to get shadow mapping working using GLSL. Unfortunately my depth render results are unusable even I have a pretty decent depth buffer precision. It is rendering like wireframe, following ...
4
votes
2answers
1k views
openGL GLSL Shader: Draw a Circle on a flat polygon
I'm looking for a way to draw something similar to these "knobs" with an GLSL shader
I only want to draw the coloured circles, and my application is not for a knob rather a funky progress meter. Is ...
4
votes
2answers
334 views
3D Graphics Batching
A lot of sites/articles say 'batch! batch! batch!'. Can someone explain what 'batching' represents with respect to shaders?
Namely, does
changing textures
changing arbitrary shader variables
...
4
votes
5answers
538 views
How to perform bit shift without (“<<” || “>>”) operator efficiently?
I am working on a OpenGL ES 2.0 shader and I have tightly packed data e.g. three 5-bit unsigned integers within a block of two bytes. To unpack this data I obviously need bit-shifting, but this is not ...
4
votes
2answers
839 views
iPhone shader profiling
I'm using a series of shaders to perform realtime image processing on the iPhone (3GS/4/iPad). The fps isn't what I'd like it to be.
Are there any tools that I can use to help me work out what the ...