News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Re: MASM32 Version 9 Release

Started by AsmER, April 14, 2006, 08:08:05 PM

Previous topic - Next topic

AsmER

WARNING,

Include file glu32.inc contain wrong definition for gluPerspective function. This function need 4 parameters, not 8.
void gluPerspective(
GLdouble fovy,
GLdouble aspect,
GLdouble zNear,
GLdouble zFar
);

Regards, AsmER

key2k3

@hutch--:
I think it's time to include a better tutorial for the macro system. I would suggest
the following:

http://web.sau.edu/lilliskevinm/csci240/masmdocs/programmersguide/13LMAPGC09.pdf

@AsmER:
Could it be that a "GLdouble" represents 2 DWORDs? Just a hint...


- key2k3 -

MichaelW

key2K3,

The link is for what appears to be a Microsoft document, that is already available from a link on the forum web site, that someone has put their name on, an obvious copyright violation.


eschew obfuscation

AsmER

key2k3,

GLdouble = QWORD (8 bytes) = 2x DWORD ( 2x 4 bytes).
You are right.