. Updates to get X86, MXX and 3DNow assembler code working with Watcom

C++ and NASM. This includes lots of _ASMAPI macros to ensure that
   assembler functions are prototyped as __cdecl, as Watcom C++ uses
   register calling conventions by default.
 . Misc fixes to files to remove warnings generated by Watcom C++.
This commit is contained in:
Kendall Bennett
1999-11-12 04:56:54 +00:00
parent b95d252c34
commit e312cf26ea
23 changed files with 106 additions and 111 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: texobj.c,v 1.8 1999/11/11 01:22:28 brianp Exp $ */
/* $Id: texobj.c,v 1.9 1999/11/12 04:57:04 kendallb Exp $ */
/*
* Mesa 3-D graphics library
@@ -422,7 +422,7 @@ _mesa_BindTexture( GLenum target, GLuint texName )
dim = (GLuint) (target - GL_TEXTURE_1D);
if (dim < 0 || dim > 2) {
if (dim > 2) {
gl_error( ctx, GL_INVALID_ENUM, "glBindTexture" );
return;
}