diff options
Diffstat (limited to 'src/i965_hwmc.h')
-rw-r--r-- | src/i965_hwmc.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/i965_hwmc.h b/src/i965_hwmc.h index 12d977b2..5bdd4525 100644 --- a/src/i965_hwmc.h +++ b/src/i965_hwmc.h @@ -1,28 +1,28 @@ #define I965_MC_STATIC_BUFFER_SIZE (1024*512) #define I965_MAX_SURFACES 12 struct _i830_memory; -struct drm_memory_block { - struct _i830_memory *buffer; - drm_handle_t handle; - drmAddress ptr; - size_t size; - unsigned long offset; +struct drm_memory_block { + struct _i830_memory *buffer; + drm_handle_t handle; + drmAddress ptr; + size_t size; + unsigned long offset; }; struct i965_xvmc_surface { - int w, h; - unsigned int no; - void *handle; - dri_bo *bo; + int w, h; + unsigned int no; + void *handle; + dri_bo *bo; }; struct i965_xvmc_context { - struct _intel_xvmc_common comm; - struct drm_memory_block static_buffer; - struct drm_memory_block blocks; - struct drm_memory_block slice; - struct i965_xvmc_surface *surfaces[I965_MAX_SURFACES]; - unsigned int is_g4x:1; - unsigned int is_965_q:1; - unsigned int is_igdng:1; + struct _intel_xvmc_common comm; + struct drm_memory_block static_buffer; + struct drm_memory_block blocks; + struct drm_memory_block slice; + struct i965_xvmc_surface *surfaces[I965_MAX_SURFACES]; + unsigned int is_g4x:1; + unsigned int is_965_q:1; + unsigned int is_igdng:1; }; |