From cb6ae7b16b196a0995efd8aeaecc992785091fc6 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 20 Apr 2001 22:51:55 +0000 Subject: compilation fixes - texturing isn't working at this time --- src/mesa/drivers/glide/fxddtex.c | 7 ++++++- src/mesa/drivers/glide/fxsetup.c | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'src/mesa') diff --git a/src/mesa/drivers/glide/fxddtex.c b/src/mesa/drivers/glide/fxddtex.c index 6232144a3b..23bc9e41f8 100644 --- a/src/mesa/drivers/glide/fxddtex.c +++ b/src/mesa/drivers/glide/fxddtex.c @@ -1233,6 +1233,8 @@ fxDDTexImage2D(GLcontext * ctx, GLenum target, GLint level, /* Apply pixel transfer ops and convert image format to something * simple (format = simpleFormat, type = CHAN_TYPE). */ +#if 000 + /** XXX THIS HAS TO BE REWRITTEN! **/ _mesa_transfer_teximage(ctx, 2, /* dimensions */ simpleFormat, /* base int format */ simpleFormat, /* dest format */ @@ -1242,7 +1244,7 @@ fxDDTexImage2D(GLcontext * ctx, GLenum target, GLint level, width * comps, /* dstRowStride */ 0, /* dstImageStride */ format, type, pixels, packing /* src info */ ); - +#endif if (mml->width != width || mml->height != height) { /* Upscale image to accomodate Glide's image aspect limitations. */ const struct gl_texture_format *texFormat @@ -1350,6 +1352,8 @@ fxDDTexSubImage2D(GLcontext * ctx, GLenum target, GLint level, /* Apply pixel transfer ops and convert image format to something * simple (format = simpleFormat, type = CHAN_TYPE). */ +#if 0 + /* XXX this has to be rewritten! */ _mesa_transfer_teximage(ctx, 2, /* dimensions */ simpleFormat, /* base int format */ simpleFormat, /* dest format */ @@ -1359,6 +1363,7 @@ fxDDTexSubImage2D(GLcontext * ctx, GLenum target, GLint level, width * comps, /* dstRowStride */ 0, /* dstImageStride */ format, type, pixels, packing /* src info */ ); +#endif if (texImage->Width != mml->width || texImage->Height != mml->height) { /* Upscale image to accomodate Glide's image aspect limitations. */ diff --git a/src/mesa/drivers/glide/fxsetup.c b/src/mesa/drivers/glide/fxsetup.c index 9c12f3fb87..6c5aad326f 100644 --- a/src/mesa/drivers/glide/fxsetup.c +++ b/src/mesa/drivers/glide/fxsetup.c @@ -108,7 +108,7 @@ fxTexValidate(GLcontext * ctx, struct gl_texture_object *tObj) else FX_smallLodLog2(ti->info) = FX_largeLodLog2(ti->info); - fxTexGetFormat(tObj->Image[minl]->TexFormat->IntFormat, &(ti->info.format), + fxTexGetFormat(tObj->Image[minl]->TexFormat->BaseFormat, &(ti->info.format), &(ti->baseLevelInternalFormat)); switch (tObj->WrapS) { -- cgit v1.2.3