~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/gallium/state_trackers/vega/vg_context.h

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
   enum st_attachment_type strb_att;
66
66
 
67
67
   void *privateData;
 
68
   int32_t stamp;
 
69
   int32_t iface_stamp;
68
70
};
69
71
 
70
72
enum vg_object_type {
105
107
   VGErrorCode _error;
106
108
 
107
109
   struct st_framebuffer *draw_buffer;
108
 
   int32_t draw_buffer_invalid;
109
110
 
110
111
   struct cso_hash *owned_objects[VG_OBJECT_LAST];
111
112
 
129
130
   struct vg_paint *default_paint;
130
131
 
131
132
   struct blit_state *blit;
 
133
 
 
134
   int32_t draw_stamp;
132
135
};
133
136
 
134
137
 
158
161
                                     enum vg_object_type type,
159
162
                                     VGHandle object);
160
163
void vg_context_add_object(struct vg_context *ctx,
161
 
                           enum vg_object_type type,
162
 
                           void *ptr);
 
164
                           struct vg_object *obj);
163
165
void vg_context_remove_object(struct vg_context *ctx,
164
 
                              enum vg_object_type type,
165
 
                              void *ptr);
 
166
                              struct vg_object *obj);
166
167
 
167
168
void vg_validate_state(struct vg_context *ctx);
168
169