Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
99 views

OpenGL object glossy/shiny in Mac OS X 10.6, but not 10.5. Why?

I've written an OpenGL screensaver for Mac OS X 10.5 and higher which shows a spinning heart constructed using marching cubes. It works fine on my black 13.3" development Macbook running Snow Leopard ...
3
votes
1answer
226 views

Directx9 Specular Mapping

How would I implement loading a texture to be used as a specular map for a piece of geometry and rendering it in Directx9 using C++? Are there any tutorials or basic examples I can refer to?
1
vote
0answers
88 views

How to get specular color in OpenGL?

My code works for everything except specular component. glEnable(GL_COLOR_SUM); ... glEnableClientState(GL_COLOR_ARRAY); glColorPointer(4, GL_UNSIGNED_BYTE, 0, color); ...
0
votes
1answer
132 views

Phong-specular lighting in glsl (lwjgl)

I'm currently trying to make specular lighting on an sphere using glsl and using Phong-model. This is how my fragment shader looks like: #version 120 uniform vec4 color; uniform vec3 sunPosition; ...
0
votes
0answers
72 views

Handling undefined, NaN or Inf Values in glsl. Thinking of matherrors

I still didn't get rid of some annoying bugs in my glsl shader (GL 2.0)... I searched for a solution of this problem for over 3 weeks now, but I didn't get any. There are many examples and ...
0
votes
1answer
155 views

GLSL/OpenGL 2.1: Specular Lighting using Uniforms

So, I've begun a quest to implement awesome lighting without using OpenGL's lighting system. I've successfully implemented Phong diffuse lighting. Specular is giving me trouble. I need to know what ...
0
votes
2answers
340 views

How do I send information to an HLSL effect in DirectX 10?

I'd like to send my view vector to an ID3D10Effect variable in order to calculate specular lighting. How do I send a vector or even just scalar values to the HLSL from the running DirectX program? I ...