The MASM Forum Archive 2004 to 2012

Project Support Forums => OpenGL Forum => Topic started by: shaldan on October 14, 2005, 01:31:31 PM

Title: OPTIMALIZATON
Post by: shaldan on October 14, 2005, 01:31:31 PM
I saw MACRO CFLT here in functions like glVertex3f, CFLT(-1.0), CFLT(1.0), CFLT(0.0)
and I wondered if there is a speed (or storage) difference between using this macro or simply using declared variable in such functions.

for examples:

.data
Val1         dd 1.0
Valm1                 dd -1.0
.code
invoke glVertex3f,Valm1,Val1,Val1

thanks

p.s. thanks GOD and Randall Hyde for his books :)
Title: Re: OPTIMALIZATON
Post by: hitchhikr on October 14, 2005, 01:40:52 PM
No speed difference but same floating points will be duplicated when using the macro.
Title: Re: OPTIMALIZATON
Post by: shaldan on October 14, 2005, 02:01:43 PM
thank you very much for the answer ....
it is amazing what can be done with openGl by one man ..... (just watching your demos :)))
How many years? :) are needed to achieve such mastery ? I am new to openGl and little experienced in MASM....
and 1kb demo is black magic stuff for me :)
Title: Re: OPTIMALIZATON
Post by: hitchhikr on October 16, 2005, 11:07:53 AM
Some years :toothy
Title: Re: OPTIMALIZATON
Post by: RedXVII on October 16, 2005, 09:15:17 PM
Hehehe, all round praise. Good work indeed.

I have a feeling this section is getting a bit more popular  :U