casts to silence warnings

This commit is contained in:
Brian Paul
2004-03-04 14:56:34 +00:00
parent c26c1ddd56
commit f753320f0f
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -147,7 +147,7 @@ static r128TexObjPtr r128AllocTexObj( struct gl_texture_object *texObj )
r128TexObjPtr t;
if ( R128_DEBUG & DEBUG_VERBOSE_API ) {
fprintf( stderr, "%s( %p )\n", __FUNCTION__, texObj );
fprintf( stderr, "%s( %p )\n", __FUNCTION__, (void *) texObj );
}
t = (r128TexObjPtr) CALLOC_STRUCT( r128_tex_obj );
@@ -557,7 +557,7 @@ static void r128BindTexture( GLcontext *ctx, GLenum target,
struct gl_texture_object *tObj )
{
if ( R128_DEBUG & DEBUG_VERBOSE_API ) {
fprintf( stderr, "%s( %p ) unit=%d\n", __FUNCTION__, tObj,
fprintf( stderr, "%s( %p ) unit=%d\n", __FUNCTION__, (void *) tObj,
ctx->Texture.CurrentUnit );
}
+1 -1
View File
@@ -245,7 +245,7 @@ void r128UploadTexImages( r128ContextPtr rmesa, r128TexObjPtr t )
if ( R128_DEBUG & DEBUG_VERBOSE_API ) {
fprintf( stderr, "%s( %p, %p )\n",
__FUNCTION__, rmesa->glCtx, t );
__FUNCTION__, (void *) rmesa->glCtx, (void *) t );
}
assert(t);
+2 -2
View File
@@ -61,7 +61,7 @@ static void r128SetTexImages( r128ContextPtr rmesa,
assert(baseImage);
if ( R128_DEBUG & DEBUG_VERBOSE_API )
fprintf( stderr, "%s( %p )\n", __FUNCTION__, tObj );
fprintf( stderr, "%s( %p )\n", __FUNCTION__, (void *) tObj );
switch (baseImage->TexFormat->MesaFormat) {
case MESA_FORMAT_ARGB8888:
@@ -204,7 +204,7 @@ static GLboolean r128UpdateTextureEnv( GLcontext *ctx, int unit )
if ( R128_DEBUG & DEBUG_VERBOSE_API ) {
fprintf( stderr, "%s( %p, %d )\n",
__FUNCTION__, ctx, unit );
__FUNCTION__, (void *) ctx, (void *) unit );
}
if ( unit == 0 ) {