i965: Remove bad constant buffer constant-reg-already-loaded optimization.
[mesa.git] / src / mesa / drivers / dri / r128 / r128_texobj.h
index 08eac87758ba4d693aa3fde7a5ca311b67eef3d0..efbbb2df781a88a5e2d4da86aea334988a53fde0 100644 (file)
@@ -35,7 +35,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
 #ifndef _R128_TEXOBJ_H_
 #define _R128_TEXOBJ_H_
 
-#include "mm.h"
+#include "main/mm.h"
 
 /* Individual texture image information.
  */
@@ -52,14 +52,14 @@ typedef struct r128_tex_obj r128TexObj, *r128TexObjPtr;
 struct r128_tex_obj {
    driTextureObject   base;
 
-   u_int32_t bufAddr;                  /* Offset to start of locally
+   uint32_t bufAddr;                   /* Offset to start of locally
                                           shared texture block */
 
    GLuint age;
    r128TexImage image[R128_MAX_TEXTURE_LEVELS]; /* Image data for all
                                                   mipmap levels */
 
-   u_int32_t textureFormat;            /* Actual hardware format */
+   uint32_t textureFormat;             /* Actual hardware format */
 
    drm_r128_texture_regs_t setup;              /* Setup regs for texture */
 };