compilation fixes - texturing isn't working at this time
authorBrian Paul <brian.paul@tungstengraphics.com>
Fri, 20 Apr 2001 22:51:55 +0000 (22:51 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 20 Apr 2001 22:51:55 +0000 (22:51 +0000)
src/mesa/drivers/glide/fxddtex.c
src/mesa/drivers/glide/fxsetup.c

index 6232144a3b7869f1217e040cd6adff1dee5deb81..23bc9e41f8ddf8880ec6be1a00889e23fe2c37b9 100644 (file)
@@ -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. */
index 9c12f3fb87eb611bc69ae42d65ae7f1ac3897836..6c5aad326fb72d5495dc8f4bc1e904fde3abe1d5 100644 (file)
@@ -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) {