~ubuntu-branches/ubuntu/quantal/mesa/quantal

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/r300/radeon_context.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-02-21 12:44:07 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20070221124407-rgcacs32mycrtadl
ImportĀ upstreamĀ versionĀ 6.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#include "radeon_screen.h"
41
41
#include "drm.h"
42
42
#include "dri_util.h"
 
43
#include "colormac.h"
43
44
 
44
45
struct radeon_context;
45
46
typedef struct radeon_context radeonContextRec;
119
120
struct radeon_dri_mirror {
120
121
        __DRIcontextPrivate *context;   /* DRI context */
121
122
        __DRIscreenPrivate *screen;     /* DRI screen */
122
 
        __DRIdrawablePrivate *drawable; /* DRI drawable bound to this ctx */
 
123
        /**
 
124
         * DRI drawable bound to this context for drawing.
 
125
         */
 
126
        __DRIdrawablePrivate    *drawable;      
 
127
 
 
128
        /**
 
129
         * DRI drawable bound to this context for reading.
 
130
         */
 
131
        __DRIdrawablePrivate    *readable;
123
132
 
124
133
        drm_context_t hwContext;
125
134
        drm_hw_lock_t *hwLock;