Remove warnings from mach64 build, fix up some _SOLO stuff,
authorDave Airlie <airliedfreedesktop.org>
Fri, 6 Feb 2004 00:16:26 +0000 (00:16 +0000)
committerDave Airlie <airliedfreedesktop.org>
Fri, 6 Feb 2004 00:16:26 +0000 (00:16 +0000)
update to newer Mesa interfaces...

15 files changed:
src/mesa/drivers/dri/mach64/Makefile.solo
src/mesa/drivers/dri/mach64/mach64_context.c
src/mesa/drivers/dri/mach64/mach64_context.h
src/mesa/drivers/dri/mach64/mach64_dd.c
src/mesa/drivers/dri/mach64/mach64_dd.h
src/mesa/drivers/dri/mach64/mach64_ioctl.c
src/mesa/drivers/dri/mach64/mach64_ioctl.h
src/mesa/drivers/dri/mach64/mach64_native_vb.c
src/mesa/drivers/dri/mach64/mach64_native_vbtmp.h
src/mesa/drivers/dri/mach64/mach64_screen.c
src/mesa/drivers/dri/mach64/mach64_tex.c
src/mesa/drivers/dri/mach64/mach64_tex.h
src/mesa/drivers/dri/mach64/mach64_texmem.c
src/mesa/drivers/dri/mach64/mach64_vb.c
src/mesa/drivers/dri/mach64/server/mach64_common.h

index e3700f267a6143f73597b035a6dfa1dbda83e052..9d6769917a7b5d62b21ddb4d0c8d3127a4cf33d3 100644 (file)
@@ -36,7 +36,6 @@ DRIVER_SOURCES = \
                mach64_vb.c \
                mach64_dd.c \
                mach64_lock.c \
-               mach64_native_vb.c \
                ../../common/driverfuncs.c \
                 ../common/mm.c \
                 ../common/utils.c \
index 4ebca8774af367d2a6b1fd89f64d1c597c9e63c9..205003a8514eadd3d10be70d98ec2abd155a7df4 100644 (file)
@@ -139,6 +139,10 @@ GLboolean mach64CreateContext( const __GLcontextModes *glVisual,
 
    mach64Screen = mmesa->mach64Screen = (mach64ScreenPtr)driScreen->private;
 
+   /* Parse configuration files */
+   driParseConfigFiles (&mmesa->optionCache, &mach64Screen->optionCache,
+                        mach64Screen->driScreen->myNum, "mach64");
+
    mmesa->sarea = (ATISAREAPrivPtr)((char *)driScreen->pSAREA +
                                    sizeof(XF86DRISAREARec));
 
@@ -210,13 +214,11 @@ GLboolean mach64CreateContext( const __GLcontextModes *glVisual,
    _swrast_allow_vertex_fog( ctx, GL_TRUE );
 
    driInitExtensions( ctx, card_extensions, GL_TRUE );
+
    mach64InitVB( ctx );
    mach64InitTriFuncs( ctx );
-   mach64DDInitDriverFuncs( ctx );
-   mach64DDInitIoctlFuncs( ctx );
    mach64DDInitStateFuncs( ctx );
    mach64DDInitSpanFuncs( ctx );
-   mach64DDInitTextureFuncs( ctx );
    mach64DDInitState( mmesa );
 
    mmesa->do_irqs = (mmesa->mach64Screen->irq && !getenv("MACH64_NO_IRQS"));
index 508b4875ce36fa55406ec20e9689925ace66e8c5..95c69270c5aa6f69b9700ac9b320fdc05a8da220 100644 (file)
@@ -238,7 +238,7 @@ struct mach64_context {
    GLuint vertex_stride_shift;
    GLuint vertex_format;
    GLuint num_verts;
-   char *verts;                
+   GLubyte *verts;             
 
    CARD32 Color;                       /* Current draw color */
    CARD32 ClearColor;                  /* Color used to clear color buffer */
index 82f4c740aa15b66fc8f7827e9fd0047c0b7ff066..f1248bd8b7f3f1d59dd7a7b3876b6ff8d1ec62b2 100644 (file)
@@ -59,7 +59,7 @@ static void mach64DDGetBufferSize( GLframebuffer *buffer,
 static const GLubyte *mach64DDGetString( GLcontext *ctx, GLenum name )
 {
    mach64ContextPtr mmesa = MACH64_CONTEXT(ctx);
-   static GLubyte buffer[128];
+   static char buffer[128];
    unsigned   offset;
    const char * card_name = "Mach64 [Rage Pro]";
    GLuint agp_mode = mmesa->mach64Screen->IsPCI ? 0 :
@@ -123,12 +123,12 @@ static void mach64DDFinish( GLcontext *ctx )
 
 /* Initialize the driver's misc functions.
  */
-void mach64DDInitDriverFuncs( GLcontext *ctx )
+void mach64InitDriverFuncs( struct dd_function_table *functions )
 {
-   ctx->Driver.GetBufferSize   = mach64DDGetBufferSize;
-   ctx->Driver.ResizeBuffers    = _swrast_alloc_buffers;
-   ctx->Driver.GetString       = mach64DDGetString;
-   ctx->Driver.Finish          = mach64DDFinish;
-   ctx->Driver.Flush           = mach64DDFlush;
-   ctx->Driver.Error           = NULL;
+   functions->GetBufferSize    = mach64DDGetBufferSize;
+   functions->ResizeBuffers    = _swrast_alloc_buffers;
+   functions->GetString        = mach64DDGetString;
+   functions->Finish           = mach64DDFinish;
+   functions->Flush            = mach64DDFlush;
+
 }
index de5649919fe2ff649c00b1720a129de8ddf8f6a0..92b10c6078eecdc621e247c8cee58a10aed17673 100644 (file)
@@ -33,7 +33,7 @@
 
 #ifdef GLX_DIRECT_RENDERING
 
-extern void mach64DDInitDriverFuncs( GLcontext *ctx );
+extern void mach64InitDriverFuncs( struct dd_function_table *functions );
 
 #endif
 #endif
index 06bb9c8f1a412326c9b514659c0cba17adfef3c4..0bd093916664eca5ba8662049abff3f4fc964e78 100644 (file)
@@ -905,7 +905,7 @@ void mach64UploadHwStateLocked( mach64ContextPtr mmesa )
    DMAADVANCE();
 }
 
-void mach64DDInitIoctlFuncs( GLcontext *ctx )
+void mach64InitIoctlFuncs( struct dd_function_table *functions )
 {
-    ctx->Driver.Clear = mach64DDClear;
+    functions->Clear = mach64DDClear;
 }
index 519ee985ebbb3bcc61fd27088dc15d15f1a6e103..ee0b5296bb8bdc6376fd5400a67e03afbde93a59 100644 (file)
@@ -90,9 +90,7 @@ extern void mach64PerformanceBoxesLocked( mach64ContextPtr mmesa );
 #endif
 extern void mach64WaitForIdleLocked( mach64ContextPtr mmesa );
 
-
-extern void mach64DDInitIoctlFuncs( GLcontext *ctx );
-
+extern void mach64InitIoctlFuncs( struct dd_function_table *functions );
 
 /* ================================================================
  * Helper macros:
index a3489547216e39de8d6c6a8cae30d31f04906692..e4d97ad5c50fee669974e1751ff5137d8969e1ca 100644 (file)
@@ -213,28 +213,6 @@ static void do_import( struct vertex_buffer *VB,
                    count);
 }
 
-#ifndef IMPORT_QUALIFIER
-#define IMPORT_QUALIFIER static
-#endif
-
-IMPORT_QUALIFIER void TAG(import_float_colors)( GLcontext *ctx )
-{
-   LOCALVARS
-   struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
-   struct gl_client_array *to = GET_UBYTE_COLOR_STORE();
-   do_import( VB, to, VB->ColorPtr[0] );
-   VB->ColorPtr[0] = to;
-}
-
-IMPORT_QUALIFIER void TAG(import_float_spec_colors)( GLcontext *ctx )
-{
-   LOCALVARS
-   struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
-   struct gl_client_array *to = GET_UBYTE_SPEC_COLOR_STORE();
-   do_import( VB, to, VB->SecondaryColorPtr[0] );
-   VB->SecondaryColorPtr[0] = to;
-}
-
 /* Interpolate the elements of the VB not included in typical hardware
  * vertices.  
  *
@@ -298,7 +276,6 @@ INTERP_QUALIFIER void TAG(copy_pv_extras)( GLcontext *ctx,
 
 
 #undef INTERP_QUALIFIER
-#undef IMPORT_QUALIFIER
 #undef GET_COLOR
 
 #undef IND
index b07cbcfd486382d7527ed57ca612e97d6d55ffc8..8a36405489df4d2ab4c27a3e894aa96140671b96 100644 (file)
@@ -74,7 +74,7 @@ static void TAG(emit)( GLcontext *ctx,
 #endif
 #endif
 #if DO_SPEC
-   GLubyte (*spec)[4];
+   GLfloat (*spec)[4];
    GLuint spec_stride;
 #endif
 #if DO_FOG
@@ -82,7 +82,7 @@ static void TAG(emit)( GLcontext *ctx,
    GLuint fog_stride;
 #endif
 #if DO_RGBA
-   GLubyte (*col)[4];
+   GLfloat (*col)[4];
    GLuint col_stride;
 #endif
    GLfloat (*coord)[4];
@@ -123,7 +123,7 @@ static void TAG(emit)( GLcontext *ctx,
 #endif
 
 #if DO_SPEC
-   spec = (GLubyte (*)[4])VB->SecondaryColorPtr[0]->data;
+   spec = VB->SecondaryColorPtr[0]->data;
    spec_stride = VB->SecondaryColorPtr[0]->stride;
 #endif
 
@@ -154,14 +154,14 @@ static void TAG(emit)( GLcontext *ctx,
         tc0 =  (GLfloat (*)[4])((GLubyte *)tc0 + start * tc0_stride);
 #endif
 #if DO_SPEC
-        STRIDE_4UB(spec, start * spec_stride);
+        STRIDE_4F(spec, start * spec_stride);
 #endif
 #if DO_FOG
         /*  STRIDE_F(fog, start * fog_stride); */
         fog =  (GLfloat (*)[4])((GLubyte *)fog + start * fog_stride);
 #endif
 #if DO_RGBA
-        STRIDE_4UB(col, start * col_stride);
+        STRIDE_4F(col, start * col_stride);
 #endif
         coord =  (GLfloat (*)[4])((GLubyte *)coord + start * coord_stride);
    }
@@ -248,7 +248,7 @@ static void TAG(emit)( GLcontext *ctx,
         ((GLubyte *)p)[0] = spec[0][2];                        /* VERTEX_?_SPEC_B */
         ((GLubyte *)p)[1] = spec[0][1];                        /* VERTEX_?_SPEC_G */
         ((GLubyte *)p)[2] = spec[0][0];                        /* VERTEX_?_SPEC_R */
-        STRIDE_4UB(spec, spec_stride);
+        STRIDE_4F(spec, spec_stride);
 #endif
 #if DO_FOG
         ((GLubyte *)p)[3] = fog[0][0] * 255.0;                 /* VERTEX_?_SPEC_A */
@@ -273,7 +273,7 @@ static void TAG(emit)( GLcontext *ctx,
         *((GLubyte *)p)++ = col[0][1];                         /* VERTEX_?_G */
         *((GLubyte *)p)++ = col[0][0];                         /* VERTEX_?_R */
         *((GLubyte *)p)++ = col[0][3];                         /* VERTEX_?_A */
-        STRIDE_4UB(col, col_stride);
+        STRIDE_4F(col, col_stride);
 #else
         p++;
 #endif
index 69bd2282858a9368b39533fee7deb6b5e052a2c2..916b80b4ca1cc33ed28d221ffe324e8bef309747 100644 (file)
 #include "utils.h"
 #include "vblank.h"
 
+#ifndef _SOLO
 #include "glxextensions.h"
+#endif
+
+/* Mach64 configuration
+ */
+#include "xmlpool.h"
+
+const char __driConfigOptions[] =
+DRI_CONF_BEGIN
+    DRI_CONF_SECTION_PERFORMANCE
+        DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_DEF_INTERVAL_0)
+    DRI_CONF_SECTION_END
+#if ENABLE_PERF_BOXES
+    DRI_CONF_SECTION_DEBUG
+        DRI_CONF_PERFORMANCE_BOXES(false)
+    DRI_CONF_SECTION_END
+#endif
+DRI_CONF_END;
+#if ENABLE_PERF_BOXES
+static const GLuint __driNConfigOptions = 2;
+#else
+static const GLuint __driNConfigOptions = 1;
+#endif
+
 
 /* Create the device specific screen private data struct.
  */
 static mach64ScreenRec *
-mach64CreateScreen( __DRIscreenPrivate *driScreen )
+mach64CreateScreen( __DRIscreenPrivate *sPriv )
 {
-   mach64ScreenRec *mach64Screen;
-   ATIDRIPtr serverInfo = (ATIDRIPtr)driScreen->pDevPriv;
+   mach64ScreenPtr mach64Screen;
+   ATIDRIPtr serverInfo = (ATIDRIPtr)sPriv->pDevPriv;
 
    if ( MACH64_DEBUG & DEBUG_VERBOSE_DRI ) 
       fprintf( stderr, "%s\n", __FUNCTION__ );
 
-   if ( ! driCheckDriDdxDrmVersions( driScreen, "Mach64", 4, 0, 6, 4, 1, 0 ) )
+   if ( ! driCheckDriDdxDrmVersions( sPriv, "Mach64", 4, 0, 6, 4, 1, 0 ) )
       return NULL;
 
    /* Allocate the private area */
-   mach64Screen = (mach64ScreenRec *) CALLOC( sizeof(*mach64Screen) );
+   mach64Screen = (mach64ScreenPtr) CALLOC( sizeof(*mach64Screen) );
    if ( !mach64Screen ) return NULL;
-   
+
+   /* parse information in __driConfigOptions */
+   driParseOptionInfo (&mach64Screen->optionCache,
+                      __driConfigOptions, __driNConfigOptions);
+
    mach64Screen->IsPCI = serverInfo->IsPCI;
 
    {
@@ -69,7 +97,7 @@ mach64CreateScreen( __DRIscreenPrivate *driScreen )
       gp.param = MACH64_PARAM_IRQ_NR;
       gp.value = &mach64Screen->irq;
 
-      ret = drmCommandWriteRead( driScreen->fd, DRM_MACH64_GETPARAM,
+      ret = drmCommandWriteRead( sPriv->fd, DRM_MACH64_GETPARAM,
                                    &gp, sizeof(gp));
       if (ret) {
          fprintf(stderr, "DRM_MACH64_GETPARAM (MACH64_PARAM_IRQ_NR): %d\n", ret);
@@ -80,7 +108,7 @@ mach64CreateScreen( __DRIscreenPrivate *driScreen )
 
    mach64Screen->mmio.handle = serverInfo->regs;
    mach64Screen->mmio.size   = serverInfo->regsSize;
-   if ( drmMap( driScreen->fd,
+   if ( drmMap( sPriv->fd,
                mach64Screen->mmio.handle,
                mach64Screen->mmio.size,
                (drmAddressPtr)&mach64Screen->mmio.map ) != 0 ) {
@@ -88,7 +116,7 @@ mach64CreateScreen( __DRIscreenPrivate *driScreen )
       return NULL;
    }
 
-   mach64Screen->buffers = drmMapBufs( driScreen->fd );
+   mach64Screen->buffers = drmMapBufs( sPriv->fd );
    if ( !mach64Screen->buffers ) {
       drmUnmap( (drmAddress)mach64Screen->mmio.map,
                mach64Screen->mmio.size );
@@ -99,7 +127,7 @@ mach64CreateScreen( __DRIscreenPrivate *driScreen )
    if ( !mach64Screen->IsPCI ) {
       mach64Screen->agpTextures.handle = serverInfo->agp;
       mach64Screen->agpTextures.size   = serverInfo->agpSize;
-      if ( drmMap( driScreen->fd,
+      if ( drmMap( sPriv->fd,
                   mach64Screen->agpTextures.handle,
                   mach64Screen->agpTextures.size,
                   (drmAddressPtr)&mach64Screen->agpTextures.map ) ) {
@@ -149,8 +177,24 @@ mach64CreateScreen( __DRIscreenPrivate *driScreen )
       mach64Screen->logTexGranularity[MACH64_AGP_HEAP] = serverInfo->logAgpTextureGranularity;
    }
 
-   mach64Screen->driScreen = driScreen;
+   mach64Screen->driScreen = sPriv;
+#ifndef _SOLO
+   if ( driCompareGLXAPIVersion( 20030813 ) >= 0 ) {
+      PFNGLXSCRENABLEEXTENSIONPROC glx_enable_extension =
+          (PFNGLXSCRENABLEEXTENSIONPROC) glXGetProcAddress( (const GLubyte *) "__glXScrEnableExtension" );
+      void * const psc = sPriv->psc->screenConfigs;
+
+      if ( glx_enable_extension != NULL ) {
+        if ( mach64Screen->irq != 0 ) {
+           (*glx_enable_extension)( psc, "GLX_SGI_swap_control" );
+           (*glx_enable_extension)( psc, "GLX_SGI_video_sync" );
+           (*glx_enable_extension)( psc, "GLX_MESA_swap_control" );
+        }
 
+        (*glx_enable_extension)( psc, "GLX_MESA_swap_frame_usage" );
+      }
+   }
+#endif
    return mach64Screen;
 }
 
@@ -263,7 +307,7 @@ mach64InitDriver( __DRIscreenPrivate *driScreen )
    return GL_TRUE;
 }
 
-
+#ifndef _SOLO
 /* This function is called by libGL.so as soon as libGL.so is loaded.
  * This is where we register new extension functions with the dispatcher.
  */
@@ -273,7 +317,7 @@ void __driRegisterExtensions( void )
 
    if ( driCompareGLXAPIVersion( 20030317 ) >= 0 ) {
       glx_enable_extension = (PFNGLXENABLEEXTENSIONPROC)
-         glXGetProcAddress( "__glXEnableExtension" );
+         glXGetProcAddress( (const GLubyte *) "__glXEnableExtension" );
 
       if ( glx_enable_extension != NULL ) {
         glx_enable_extension( "GLX_SGI_swap_control", GL_FALSE );
@@ -282,7 +326,7 @@ void __driRegisterExtensions( void )
       }
    }
 }
-
+#endif
 
 static struct __DriverAPIRec mach64API = {
    .InitDriver      = mach64InitDriver,
@@ -309,6 +353,7 @@ static struct __DriverAPIRec mach64API = {
  * The __driCreateScreen name is the symbol that libGL.so fetches.
  * Return:  pointer to a __DRIscreenPrivate.
  */
+#ifndef _SOLO 
 void *__driCreateScreen(Display *dpy, int scrn, __DRIscreen *psc,
                         int numConfigs, __GLXvisualConfig *config)
 {
@@ -316,3 +361,12 @@ void *__driCreateScreen(Display *dpy, int scrn, __DRIscreen *psc,
    psp = __driUtilCreateScreen(dpy, scrn, psc, numConfigs, config, &mach64API);
    return (void *) psp;
 }
+#else
+void *__driCreateScreen(struct DRIDriverRec *driver,
+                        struct DRIDriverContextRec *driverContext)
+{
+   __DRIscreenPrivate *psp;
+   psp = __driUtilCreateScreen(driver, driverContext, &mach64API);
+   return (void *) psp;
+}
+#endif
index 02d76067aeda526e87db6754d007a4b6935d3845..1ac42e330dc599613abc5386751f99597381a065 100644 (file)
@@ -580,26 +580,26 @@ static GLboolean mach64DDIsTextureResident( GLcontext *ctx,
 }
 
 
-void mach64DDInitTextureFuncs( GLcontext *ctx )
+void mach64InitTextureFuncs( struct dd_function_table *functions )
 {
-   ctx->Driver.TexEnv                  = mach64DDTexEnv;
-   ctx->Driver.ChooseTextureFormat     = mach64ChooseTextureFormat;
-   ctx->Driver.TexImage1D              = mach64TexImage1D;
-   ctx->Driver.TexSubImage1D           = mach64TexSubImage1D;
-   ctx->Driver.TexImage2D              = mach64TexImage2D;
-   ctx->Driver.TexSubImage2D           = mach64TexSubImage2D;
-   ctx->Driver.TexImage3D               = _mesa_store_teximage3d;
-   ctx->Driver.TexSubImage3D            = _mesa_store_texsubimage3d;
-   ctx->Driver.CopyTexImage1D           = _swrast_copy_teximage1d;
-   ctx->Driver.CopyTexImage2D           = _swrast_copy_teximage2d;
-   ctx->Driver.CopyTexSubImage1D        = _swrast_copy_texsubimage1d;
-   ctx->Driver.CopyTexSubImage2D        = _swrast_copy_texsubimage2d;
-   ctx->Driver.CopyTexSubImage3D        = _swrast_copy_texsubimage3d;
-   ctx->Driver.TexParameter            = mach64DDTexParameter;
-   ctx->Driver.BindTexture             = mach64DDBindTexture;
-   ctx->Driver.DeleteTexture           = mach64DDDeleteTexture;
-   ctx->Driver.UpdateTexturePalette    = NULL;
-   ctx->Driver.ActiveTexture           = NULL;
-   ctx->Driver.IsTextureResident       = mach64DDIsTextureResident;
-   ctx->Driver.PrioritizeTexture       = NULL;
+   functions->TexEnv                   = mach64DDTexEnv;
+   functions->ChooseTextureFormat      = mach64ChooseTextureFormat;
+   functions->TexImage1D               = mach64TexImage1D;
+   functions->TexSubImage1D            = mach64TexSubImage1D;
+   functions->TexImage2D               = mach64TexImage2D;
+   functions->TexSubImage2D            = mach64TexSubImage2D;
+   functions->TexImage3D               = _mesa_store_teximage3d;
+   functions->TexSubImage3D            = _mesa_store_texsubimage3d;
+   functions->CopyTexImage1D           = _swrast_copy_teximage1d;
+   functions->CopyTexImage2D           = _swrast_copy_teximage2d;
+   functions->CopyTexSubImage1D        = _swrast_copy_texsubimage1d;
+   functions->CopyTexSubImage2D        = _swrast_copy_texsubimage2d;
+   functions->CopyTexSubImage3D        = _swrast_copy_texsubimage3d;
+   functions->TexParameter             = mach64DDTexParameter;
+   functions->BindTexture              = mach64DDBindTexture;
+   functions->DeleteTexture            = mach64DDDeleteTexture;
+   functions->UpdateTexturePalette     = NULL;
+   functions->ActiveTexture            = NULL;
+   functions->IsTextureResident        = mach64DDIsTextureResident;
+   functions->PrioritizeTexture        = NULL;
 }
index ecd36db325d6794d46bf41c65acaa2897b535f6c..acae887d3037c71ad9e371651dd79661c9c00075 100644 (file)
@@ -59,8 +59,7 @@ extern void mach64EmitTexStateLocked( mach64ContextPtr mmesa,
                                      mach64TexObjPtr t0,
                                      mach64TexObjPtr t1 );
 
-extern void mach64DDInitTextureFuncs( GLcontext *ctx );
-
+extern void mach64InitTextureFuncs( struct dd_function_table *functions );
 
 /* ================================================================
  * Color conversion macros:
index 44dd888a96857ccb4ff38a723b470067e4f2891d..e78264ed87b233275cc68dac02b7ba1fbb47728a 100644 (file)
@@ -395,7 +395,7 @@ static void mach64UploadAGPSubImage( mach64ContextPtr mmesa,
    if ( ( level < 0 ) || ( level > mmesa->glCtx->Const.MaxTextureLevels ) )
      return;
 
-   image = t->tObj->Image[level];
+   image = t->tObj->Image[0][level];
    if ( !image )
       return;
 
@@ -460,7 +460,7 @@ static void mach64UploadLocalSubImage( mach64ContextPtr mmesa,
    if ( ( level < 0 ) || ( level > mmesa->glCtx->Const.MaxTextureLevels ) )
       return;
 
-   image = t->tObj->Image[level];
+   image = t->tObj->Image[0][level];
    if ( !image )
       return;
 
index 8a132b4f7b4a9beff383ca659a5330a2dc387d39..254dd27e063ddd17e473d9d5780d1db800bbaf98 100644 (file)
@@ -622,7 +622,7 @@ void mach64InitVB( GLcontext *ctx )
    mach64ContextPtr mmesa = MACH64_CONTEXT(ctx);
    GLuint size = TNL_CONTEXT(ctx)->vb.Size;
 
-   mmesa->verts = (char *)ALIGN_MALLOC(size * 4 * 16, 32);
+   mmesa->verts = (GLubyte *)ALIGN_MALLOC(size * 4 * 16, 32);
 
    {
       static int firsttime = 1;
index 65ec25afb660c46b9b942a9c34db6b2d5a74d7d3..00609e31a4bde12294156cc5ae75b6f8ec0d0c24 100644 (file)
@@ -121,11 +121,11 @@ typedef struct {
 } drmMach64Blit;
 
 typedef struct {
-   enum {
-      MACH64_PARAM_FRAMES_QUEUED = 0x01,
-      MACH64_PARAM_IRQ_NR = 0x02
-   } param;
+   int param;
    int *value;
 } drmMach64GetParam;
 
+#define MACH64_PARAM_FRAMES_QUEUED 1
+#define MACH64_PARAM_IRQ_NR       2
+
 #endif /* __MACH64_COMMON_H__ */