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 (404)
games submitted by our members
Games in WIP (289)
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  
  OpenGL using color and texture on a quad  (Read 1085 times)
0 Members and 1 Guest are viewing this topic.
Offline adventurerok

Junior Newbie





« Posted 2012-03-10 10:11:09 »

I want to use color and texture on a quad as such that the texture will appear darker with a color like brown or black. I wish to use this to light the textured quads much like XNA SpriteBatch.draw(Texture2D texture, Vector2 Position, Color color); (I am porting a game from XNA to LWJGL)

E.g. like this: (XNA)


As you can see the texture has been colored by the game's colored lighting method. Is there any way to do this in openGL?
Offline roland
« Reply #1 - Posted 2012-03-10 10:48:36 »

Welcome to JGO  Smiley

Take a look here:
http://lwjgl.org/wiki/index.php?title=Slick-Util_Library_-_Part_1_-_Loading_Images_for_LWJGL

You will need to set a colour also before you draw each vertex (or just the first if you want all vertices to be the same colour).
Do this with:

1  
GL11.glColor3f(1,1,1); //RGB
Offline theagentd
« Reply #2 - Posted 2012-03-10 11:50:20 »

Note that the color of glColor and the color sampled from the texture are multiplied together, meaning that if your color is red (1.0, 0.0, 0.0) and your texture sample is green (0.0, 1.0, 0.0) you'll end up with black (1*0, 0*1, 0*0), but I assume that's how the XNA function works too. =P

Myomyomyo.
Games published by our own members! Check 'em out!
Try the Free Demo of Titan Attacks
Offline adventurerok

Junior Newbie





« Reply #3 - Posted 2012-03-10 11:54:26 »

Welcome to JGO  Smiley

Take a look here:
http://lwjgl.org/wiki/index.php?title=Slick-Util_Library_-_Part_1_-_Loading_Images_for_LWJGL

You will need to set a colour also before you draw each vertex (or just the first if you want all vertices to be the same colour).
Do this with:

1  
GL11.glColor3f(1,1,1); //RGB

Now I understand what I did wrong. I was using glColor3b(255, 255, 255);, which dosn't seem to work. The float method works just fine though, so I have to divide the bytes by 255F!
Offline adventurerok

Junior Newbie





« Reply #4 - Posted 2012-03-10 12:06:35 »

For some strange reason dividing a byte by a float seems to generate numbers like: -0.003921569 ((byte) 255 / 255F). Does anyone know why this is?
Offline theagentd
« Reply #5 - Posted 2012-03-10 12:26:43 »

For some strange reason dividing a byte by a float seems to generate numbers like: -0.003921569 ((byte) 255 / 255F). Does anyone know why this is?


(byte) 255 = -1

A byte has range of -128 to 127. If you set it to 255 it ends up as -1 since it subtracts 256 from it... xd

Myomyomyo.
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!
 
Get high quality music tracks for your game!

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 (34 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (148 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.076 seconds with 20 queries.