Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (406)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Shaders and JOGL  (Read 2489 times)
0 Members and 1 Guest are viewing this topic.
Offline a6767

Senior Newbie





« Posted 2007-08-01 22:14:51 »

I'm implementing shaders with glsl in my JOGL applet. Everything works fine, except textures. If I try to access to texture 1 (With MultiTexture activated) , my program access to texture 0. I pass the unit of texture as a uniform to texture2D function. There is no way to say to my fragment shader which texture I need to view.

The fragment shader is very simple:

uniform sampler2D colorMap;
uniform sampler2D envMap;
void main()
{
  vec4 color = texture2D(colorMap,gl_TexCoord[0].st);
  vec4 env = texture2D(envMap,gl_TexCoord[1].st);
  gl_FragColor=color+env*0.4;
}

It gets colorMap=0, envMap=0 . I believe this, because it applies as colorMap texture0 and as envMap texture0
Offline a6767

Senior Newbie





« Reply #1 - Posted 2007-08-01 22:42:06 »

I answer myself. Before calling glUniform you must call glActiveProgram
Offline gouessej

JGO Ninja


Medals: 33
Projects: 1


TUER


« Reply #2 - Posted 2007-08-03 13:29:21 »

Could you give me an example of shader to handle Phong model with textures please?

Games published by our own members! Check 'em out!
Try the Free Demo of Revenge of the Titans
Offline lhkbob

JGO Knight


Medals: 32



« Reply #3 - Posted 2007-08-03 16:09:53 »

It shouldn't be that hard to find a Phong implementation on the web and just add some texturing support.  I would think all you need to do is calculate the phong lighting from before and then modulate it with the textures.

Offline a6767

Senior Newbie





« Reply #4 - Posted 2007-08-06 08:39:13 »

gouessej, I haven't one. But there are many samples in the web. In any case, it is not hard to implement one.

Take a look at these tuts

http://www.lighthouse3d.com/opengl/glsl/index.php?ogldir2

http://www.ozone3d.net/tutorials/glsl_lighting_phong.php
Offline gouessej

JGO Ninja


Medals: 33
Projects: 1


TUER


« Reply #5 - Posted 2007-08-08 13:34:37 »

gouessej, I haven't one. But there are many samples in the web. In any case, it is not hard to implement one.

Take a look at these tuts

http://www.lighthouse3d.com/opengl/glsl/index.php?ogldir2

http://www.ozone3d.net/tutorials/glsl_lighting_phong.php

Thanks but the main difficulty is to adapt it to handle the textures.

Offline trbabb

Junior Newbie





« Reply #6 - Posted 2007-08-08 23:32:02 »

So, the lambertian term should be between 0 and 1. Multiply that value by the R, G, B sample you get from the texture. Then add the ambient to it. Then add the specular to it. Really, not difficult.
Offline gouessej

JGO Ninja


Medals: 33
Projects: 1


TUER


« Reply #7 - Posted 2007-08-13 13:43:04 »

So, the lambertian term should be between 0 and 1. Multiply that value by the R, G, B sample you get from the texture. Then add the ambient to it. Then add the specular to it. Really, not difficult.
Ok thank you very much. I'm a newbie in GLSL, sorry.

Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Try the Free Demo of Revenge of the Titans

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (84 views)
2013-05-17 21:29:12

alaslipknot (92 views)
2013-05-16 21:24:48

gouessej (123 views)
2013-05-16 00:53:38

gouessej (117 views)
2013-05-16 00:17:58

theagentd (127 views)
2013-05-15 15:01:13

theagentd (114 views)
2013-05-15 15:00:54

StreetDoggy (158 views)
2013-05-14 15:56:26

kutucuk (180 views)
2013-05-12 17:10:36

kutucuk (180 views)
2013-05-12 15:36:09

UnluckyDevil (187 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.103 seconds with 22 queries.