The MASM Forum Archive 2004 to 2012

Project Support Forums => OpenGL Forum => Topic started by: shaldan on January 09, 2006, 10:33:56 AM

Title: QWORD question ...
Post by: shaldan on January 09, 2006, 10:33:56 AM
maybe this is general question, but ....
in masm package there is your openGL example Hitch where you do not use macros converting dword and qword values. I just wonder, suppose I declared:

Value1       dq 1.0

why it cannot be done by for example:

invoke glClearDepth, Value1
or
invoke glClearDepth, QWORD PTR Value1


than

invoke glClearDepth, DWORD PTR Value1,DWORD PTR Value1+4


Prototype in gl.inc is:
glClear         proto   :dword


thanks :)
Title: Re: QWORD question ...
Post by: hitchhikr on January 10, 2006, 08:57:02 PM
The opengl prototypes included with masm32 are incomplete & false.

Correct ones are located in the examples archive.
Title: Re: QWORD question ...
Post by: shaldan on January 11, 2006, 10:26:04 AM
ehmmm ... blind dummy am I ... there are more versions of gl.inc on my disk and I lost myself in prototypes and look at wrong one :)))

thanks for patience  :)  ::)