From: Brian Date: Sat, 11 Aug 2007 15:59:54 +0000 (+0100) Subject: move pipe_buffer_handle definition to top of file, use it in pipe_region X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bec2230514ad2e8e52625ecb339fcadfabffd4df;p=mesa.git move pipe_buffer_handle definition to top of file, use it in pipe_region --- diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h index df456cc2edd..6799fdb31c8 100644 --- a/src/mesa/pipe/p_state.h +++ b/src/mesa/pipe/p_state.h @@ -55,6 +55,9 @@ /* fwd decl */ struct pipe_surface; +/* opaque type */ +struct pipe_buffer_handle; + /*** *** State objects @@ -238,7 +241,7 @@ struct pipe_sampler_state struct pipe_region { - void *buffer; /**< driver private buffer handle */ + struct pipe_buffer_handle *buffer; /**< driver private buffer handle */ GLuint refcount; /**< Reference count for region */ GLuint cpp; /**< bytes per pixel */ @@ -326,8 +329,4 @@ struct pipe_mipmap_tree }; - -struct pipe_buffer_handle; - - #endif