~ubuntu-branches/ubuntu/natty/mesa/natty-proposed

« back to all changes in this revision

Viewing changes to src/gallium/auxiliary/cso_cache/cso_context.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Hooker, Robert Hooker, Christopher James Halse Rogers
  • Date: 2010-09-14 08:55:40 UTC
  • mfrom: (1.2.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20100914085540-m4fpl0hdjlfd4jgz
Tags: 7.9~git20100909-0ubuntu1
[ Robert Hooker ]
* New upstream git snapshot up to commit 94118fe2d4b1e5 (LP: #631413)
* New features include ATI HD5xxx series support in r600, and a vastly
  improved glsl compiler.
* Remove pre-generated .pc's, use the ones generated at build time
  instead.
* Remove all references to mesa-utils now that its no longer shipped
  with the mesa source.
* Disable the experimental ARB_fragment_shader option by default on
  i915, it exposes incomplete functionality that breaks KDE compositing
  among other things. It can be enabled via driconf still. (LP: #628930).

[ Christopher James Halse Rogers ]
* debian/patches/04_osmesa_version.diff:
  - Refresh for new upstream
* Bugs fixed in this release:
  - Fixes severe rendering corruption in Unity on radeon (LP: #628727,
    LP: #596292, LP: #599741, LP: #630315, LP: #613694, LP: #599741).
  - Also fixes rendering in gnome-shell (LP: #578619).
  - Flickering in OpenGL apps on radeon (LP: #626943, LP: #610541).
  - Provides preliminary support for new intel chips (LP: #601052).
* debian/rules:
  - Update configure flags to match upstream reshuffling.
  - Explicitly remove gallium DRI drivers that we don't want to ship.
* Update debian/gbp.conf for this Maverick-specific packaging
* libegl1-mesa-dri-x11,kms: There are no longer separate kms or x11 drivers
  for EGL, libegl1-mesa-drivers now contains a single driver that provides
  both backends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
cso_single_vertex_sampler_done(struct cso_context *cso);
104
104
 
105
105
 
106
 
 
107
 
enum pipe_error cso_set_sampler_textures( struct cso_context *cso,
108
 
                                          uint count,
109
 
                                          struct pipe_texture **textures );
110
 
void cso_save_sampler_textures( struct cso_context *cso );
111
 
void cso_restore_sampler_textures( struct cso_context *cso );
112
 
 
113
 
 
114
 
 
115
 
enum pipe_error
116
 
cso_set_vertex_sampler_textures(struct cso_context *cso,
117
 
                                uint count,
118
 
                                struct pipe_texture **textures);
119
 
void
120
 
cso_save_vertex_sampler_textures(struct cso_context *cso);
121
 
void
122
 
cso_restore_vertex_sampler_textures(struct cso_context *cso);
123
 
 
 
106
enum pipe_error cso_set_vertex_elements(struct cso_context *ctx,
 
107
                                        unsigned count,
 
108
                                        const struct pipe_vertex_element *states);
 
109
void cso_save_vertex_elements(struct cso_context *ctx);
 
110
void cso_restore_vertex_elements(struct cso_context *ctx);
124
111
 
125
112
 
126
113
/* These aren't really sensible -- most of the time the api provides
157
144
void cso_restore_geometry_shader(struct cso_context *cso);
158
145
 
159
146
 
160
 
 
161
147
enum pipe_error cso_set_framebuffer(struct cso_context *cso,
162
148
                                    const struct pipe_framebuffer_state *fb);
163
149
void cso_save_framebuffer(struct cso_context *cso);
173
159
enum pipe_error cso_set_blend_color(struct cso_context *cso,
174
160
                                    const struct pipe_blend_color *bc);
175
161
 
 
162
enum pipe_error cso_set_sample_mask(struct cso_context *cso,
 
163
                                    unsigned stencil_mask);
176
164
 
177
165
enum pipe_error cso_set_stencil_ref(struct cso_context *cso,
178
166
                                    const struct pipe_stencil_ref *sr);
193
181
cso_restore_clip(struct cso_context *cso);
194
182
 
195
183
 
 
184
/* fragment sampler view state */
 
185
 
 
186
void
 
187
cso_set_fragment_sampler_views(struct cso_context *cso,
 
188
                               uint count,
 
189
                               struct pipe_sampler_view **views);
 
190
 
 
191
void
 
192
cso_save_fragment_sampler_views(struct cso_context *cso);
 
193
 
 
194
void
 
195
cso_restore_fragment_sampler_views(struct cso_context *cso);
 
196
 
 
197
 
 
198
/* vertex sampler view state */
 
199
 
 
200
void
 
201
cso_set_vertex_sampler_views(struct cso_context *cso,
 
202
                             uint count,
 
203
                             struct pipe_sampler_view **views);
 
204
 
 
205
void
 
206
cso_save_vertex_sampler_views(struct cso_context *cso);
 
207
 
 
208
void
 
209
cso_restore_vertex_sampler_views(struct cso_context *cso);
 
210
 
 
211
 
196
212
#ifdef  __cplusplus
197
213
}
198
214
#endif