diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2010-03-02 09:22:43 +0100 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-03-04 09:38:37 -0800 |
commit | 65267d4bfbf19942beab72858333c6ee3c719223 (patch) | |
tree | d5c3c64c6081eb0347cf2ff9786891fb50921d66 /src/i830.h | |
parent | 06f147dc04629a8a1534703be570e7f25e41cdd9 (diff) |
i830_memory: switch frontbuffer to drm_intel_bo
Yet another user of i830_memory gone for good.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'src/i830.h')
-rw-r--r-- | src/i830.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -236,7 +236,7 @@ typedef struct intel_screen_private { /** Linked list of buffer object memory allocations */ i830_memory *bo_list; - i830_memory *front_buffer; + drm_intel_bo *front_buffer; /* One big buffer for all cursors for kernels that support this */ drm_intel_bo *cursor_mem_argb[2]; @@ -457,7 +457,7 @@ unsigned long i830_get_fence_pitch(intel_screen_private *intel, unsigned long pi uint32_t tiling_mode); void i830_set_gem_max_sizes(ScrnInfoPtr scrn); -i830_memory *i830_allocate_framebuffer(ScrnInfoPtr scrn); +drm_intel_bo *i830_allocate_framebuffer(ScrnInfoPtr scrn); /* i830_render.c */ Bool i830_check_composite(int op, PicturePtr sourcec, PicturePtr mask, |