gallium: Use enum pipe_shader_type in set_shader_images()
[mesa.git] / src / gallium / include / pipe / p_context.h
1 /**************************************************************************
2 *
3 * Copyright 2007 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #ifndef PIPE_CONTEXT_H
29 #define PIPE_CONTEXT_H
30
31 #include "p_compiler.h"
32 #include "p_format.h"
33 #include "p_video_enums.h"
34 #include "p_defines.h"
35 #include <stdio.h>
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40
41
42 struct pipe_blend_color;
43 struct pipe_blend_state;
44 struct pipe_blit_info;
45 struct pipe_box;
46 struct pipe_clip_state;
47 struct pipe_constant_buffer;
48 struct pipe_debug_callback;
49 struct pipe_depth_stencil_alpha_state;
50 struct pipe_draw_info;
51 struct pipe_grid_info;
52 struct pipe_fence_handle;
53 struct pipe_framebuffer_state;
54 struct pipe_image_view;
55 struct pipe_index_buffer;
56 struct pipe_query;
57 struct pipe_poly_stipple;
58 struct pipe_rasterizer_state;
59 struct pipe_resolve_info;
60 struct pipe_resource;
61 struct pipe_sampler_state;
62 struct pipe_sampler_view;
63 struct pipe_scissor_state;
64 struct pipe_shader_buffer;
65 struct pipe_shader_state;
66 struct pipe_stencil_ref;
67 struct pipe_stream_output_target;
68 struct pipe_surface;
69 struct pipe_transfer;
70 struct pipe_vertex_buffer;
71 struct pipe_vertex_element;
72 struct pipe_video_buffer;
73 struct pipe_video_codec;
74 struct pipe_viewport_state;
75 struct pipe_compute_state;
76 union pipe_color_union;
77 union pipe_query_result;
78
79 /**
80 * Gallium rendering context. Basically:
81 * - state setting functions
82 * - VBO drawing functions
83 * - surface functions
84 */
85 struct pipe_context {
86 struct pipe_screen *screen;
87
88 void *priv; /**< context private data (for DRI for example) */
89 void *draw; /**< private, for draw module (temporary?) */
90
91 void (*destroy)( struct pipe_context * );
92
93 /**
94 * VBO drawing
95 */
96 /*@{*/
97 void (*draw_vbo)( struct pipe_context *pipe,
98 const struct pipe_draw_info *info );
99 /*@}*/
100
101 /**
102 * Predicate subsequent rendering on occlusion query result
103 * \param query the query predicate, or NULL if no predicate
104 * \param condition whether to skip on FALSE or TRUE query results
105 * \param mode one of PIPE_RENDER_COND_x
106 */
107 void (*render_condition)( struct pipe_context *pipe,
108 struct pipe_query *query,
109 boolean condition,
110 uint mode );
111
112 /**
113 * Query objects
114 */
115 /*@{*/
116 struct pipe_query *(*create_query)( struct pipe_context *pipe,
117 unsigned query_type,
118 unsigned index );
119
120 /**
121 * Create a query object that queries all given query types simultaneously.
122 *
123 * This can only be used for those query types for which
124 * get_driver_query_info indicates that it must be used. Only one batch
125 * query object may be active at a time.
126 *
127 * There may be additional constraints on which query types can be used
128 * together, in particular those that are implied by
129 * get_driver_query_group_info.
130 *
131 * \param num_queries the number of query types
132 * \param query_types array of \p num_queries query types
133 * \return a query object, or NULL on error.
134 */
135 struct pipe_query *(*create_batch_query)( struct pipe_context *pipe,
136 unsigned num_queries,
137 unsigned *query_types );
138
139 void (*destroy_query)(struct pipe_context *pipe,
140 struct pipe_query *q);
141
142 boolean (*begin_query)(struct pipe_context *pipe, struct pipe_query *q);
143 bool (*end_query)(struct pipe_context *pipe, struct pipe_query *q);
144
145 /**
146 * Get results of a query.
147 * \param wait if true, this query will block until the result is ready
148 * \return TRUE if results are ready, FALSE otherwise
149 */
150 boolean (*get_query_result)(struct pipe_context *pipe,
151 struct pipe_query *q,
152 boolean wait,
153 union pipe_query_result *result);
154
155 /**
156 * Get results of a query, storing into resource. Note that this may not
157 * be used with batch queries.
158 *
159 * \param wait if true, this query will block until the result is ready
160 * \param result_type the type of the value being stored:
161 * \param index for queries that return multiple pieces of data, which
162 * item of that data to store (e.g. for
163 * PIPE_QUERY_PIPELINE_STATISTICS).
164 * When the index is -1, instead of the value of the query
165 * the driver should instead write a 1 or 0 to the appropriate
166 * location with 1 meaning that the query result is available.
167 */
168 void (*get_query_result_resource)(struct pipe_context *pipe,
169 struct pipe_query *q,
170 boolean wait,
171 enum pipe_query_value_type result_type,
172 int index,
173 struct pipe_resource *resource,
174 unsigned offset);
175
176 /**
177 * Set whether all current non-driver queries except TIME_ELAPSED are
178 * active or paused.
179 */
180 void (*set_active_query_state)(struct pipe_context *pipe, boolean enable);
181
182 /*@}*/
183
184 /**
185 * State functions (create/bind/destroy state objects)
186 */
187 /*@{*/
188 void * (*create_blend_state)(struct pipe_context *,
189 const struct pipe_blend_state *);
190 void (*bind_blend_state)(struct pipe_context *, void *);
191 void (*delete_blend_state)(struct pipe_context *, void *);
192
193 void * (*create_sampler_state)(struct pipe_context *,
194 const struct pipe_sampler_state *);
195 void (*bind_sampler_states)(struct pipe_context *,
196 enum pipe_shader_type shader,
197 unsigned start_slot, unsigned num_samplers,
198 void **samplers);
199 void (*delete_sampler_state)(struct pipe_context *, void *);
200
201 void * (*create_rasterizer_state)(struct pipe_context *,
202 const struct pipe_rasterizer_state *);
203 void (*bind_rasterizer_state)(struct pipe_context *, void *);
204 void (*delete_rasterizer_state)(struct pipe_context *, void *);
205
206 void * (*create_depth_stencil_alpha_state)(struct pipe_context *,
207 const struct pipe_depth_stencil_alpha_state *);
208 void (*bind_depth_stencil_alpha_state)(struct pipe_context *, void *);
209 void (*delete_depth_stencil_alpha_state)(struct pipe_context *, void *);
210
211 void * (*create_fs_state)(struct pipe_context *,
212 const struct pipe_shader_state *);
213 void (*bind_fs_state)(struct pipe_context *, void *);
214 void (*delete_fs_state)(struct pipe_context *, void *);
215
216 void * (*create_vs_state)(struct pipe_context *,
217 const struct pipe_shader_state *);
218 void (*bind_vs_state)(struct pipe_context *, void *);
219 void (*delete_vs_state)(struct pipe_context *, void *);
220
221 void * (*create_gs_state)(struct pipe_context *,
222 const struct pipe_shader_state *);
223 void (*bind_gs_state)(struct pipe_context *, void *);
224 void (*delete_gs_state)(struct pipe_context *, void *);
225
226 void * (*create_tcs_state)(struct pipe_context *,
227 const struct pipe_shader_state *);
228 void (*bind_tcs_state)(struct pipe_context *, void *);
229 void (*delete_tcs_state)(struct pipe_context *, void *);
230
231 void * (*create_tes_state)(struct pipe_context *,
232 const struct pipe_shader_state *);
233 void (*bind_tes_state)(struct pipe_context *, void *);
234 void (*delete_tes_state)(struct pipe_context *, void *);
235
236 void * (*create_vertex_elements_state)(struct pipe_context *,
237 unsigned num_elements,
238 const struct pipe_vertex_element *);
239 void (*bind_vertex_elements_state)(struct pipe_context *, void *);
240 void (*delete_vertex_elements_state)(struct pipe_context *, void *);
241
242 /*@}*/
243
244 /**
245 * Parameter-like state (or properties)
246 */
247 /*@{*/
248 void (*set_blend_color)( struct pipe_context *,
249 const struct pipe_blend_color * );
250
251 void (*set_stencil_ref)( struct pipe_context *,
252 const struct pipe_stencil_ref * );
253
254 void (*set_sample_mask)( struct pipe_context *,
255 unsigned sample_mask );
256
257 void (*set_min_samples)( struct pipe_context *,
258 unsigned min_samples );
259
260 void (*set_clip_state)( struct pipe_context *,
261 const struct pipe_clip_state * );
262
263 void (*set_constant_buffer)( struct pipe_context *,
264 uint shader, uint index,
265 const struct pipe_constant_buffer *buf );
266
267 void (*set_framebuffer_state)( struct pipe_context *,
268 const struct pipe_framebuffer_state * );
269
270 void (*set_polygon_stipple)( struct pipe_context *,
271 const struct pipe_poly_stipple * );
272
273 void (*set_scissor_states)( struct pipe_context *,
274 unsigned start_slot,
275 unsigned num_scissors,
276 const struct pipe_scissor_state * );
277
278 void (*set_window_rectangles)( struct pipe_context *,
279 boolean include,
280 unsigned num_rectangles,
281 const struct pipe_scissor_state * );
282
283 void (*set_viewport_states)( struct pipe_context *,
284 unsigned start_slot,
285 unsigned num_viewports,
286 const struct pipe_viewport_state *);
287
288 void (*set_sampler_views)(struct pipe_context *,
289 enum pipe_shader_type shader,
290 unsigned start_slot, unsigned num_views,
291 struct pipe_sampler_view **);
292
293 void (*set_tess_state)(struct pipe_context *,
294 const float default_outer_level[4],
295 const float default_inner_level[2]);
296
297 /**
298 * Sets the debug callback. If the pointer is null, then no callback is
299 * set, otherwise a copy of the data should be made.
300 */
301 void (*set_debug_callback)(struct pipe_context *,
302 const struct pipe_debug_callback *);
303
304 /**
305 * Bind an array of shader buffers that will be used by a shader.
306 * Any buffers that were previously bound to the specified range
307 * will be unbound.
308 *
309 * \param shader selects shader stage
310 * \param start_slot first buffer slot to bind.
311 * \param count number of consecutive buffers to bind.
312 * \param buffers array of pointers to the buffers to bind, it
313 * should contain at least \a count elements
314 * unless it's NULL, in which case no buffers will
315 * be bound.
316 */
317 void (*set_shader_buffers)(struct pipe_context *,
318 enum pipe_shader_type shader,
319 unsigned start_slot, unsigned count,
320 const struct pipe_shader_buffer *buffers);
321
322 /**
323 * Bind an array of images that will be used by a shader.
324 * Any images that were previously bound to the specified range
325 * will be unbound.
326 *
327 * \param shader selects shader stage
328 * \param start_slot first image slot to bind.
329 * \param count number of consecutive images to bind.
330 * \param buffers array of the images to bind, it
331 * should contain at least \a count elements
332 * unless it's NULL, in which case no images will
333 * be bound.
334 */
335 void (*set_shader_images)(struct pipe_context *,
336 enum pipe_shader_type shader,
337 unsigned start_slot, unsigned count,
338 const struct pipe_image_view *images);
339
340 void (*set_vertex_buffers)( struct pipe_context *,
341 unsigned start_slot,
342 unsigned num_buffers,
343 const struct pipe_vertex_buffer * );
344
345 void (*set_index_buffer)( struct pipe_context *pipe,
346 const struct pipe_index_buffer * );
347
348 /*@}*/
349
350 /**
351 * Stream output functions.
352 */
353 /*@{*/
354
355 struct pipe_stream_output_target *(*create_stream_output_target)(
356 struct pipe_context *,
357 struct pipe_resource *,
358 unsigned buffer_offset,
359 unsigned buffer_size);
360
361 void (*stream_output_target_destroy)(struct pipe_context *,
362 struct pipe_stream_output_target *);
363
364 void (*set_stream_output_targets)(struct pipe_context *,
365 unsigned num_targets,
366 struct pipe_stream_output_target **targets,
367 const unsigned *offsets);
368
369 /*@}*/
370
371
372 /**
373 * Resource functions for blit-like functionality
374 *
375 * If a driver supports multisampling, blit must implement color resolve.
376 */
377 /*@{*/
378
379 /**
380 * Copy a block of pixels from one resource to another.
381 * The resource must be of the same format.
382 * Resources with nr_samples > 1 are not allowed.
383 */
384 void (*resource_copy_region)(struct pipe_context *pipe,
385 struct pipe_resource *dst,
386 unsigned dst_level,
387 unsigned dstx, unsigned dsty, unsigned dstz,
388 struct pipe_resource *src,
389 unsigned src_level,
390 const struct pipe_box *src_box);
391
392 /* Optimal hardware path for blitting pixels.
393 * Scaling, format conversion, up- and downsampling (resolve) are allowed.
394 */
395 void (*blit)(struct pipe_context *pipe,
396 const struct pipe_blit_info *info);
397
398 /*@}*/
399
400 /**
401 * Clear the specified set of currently bound buffers to specified values.
402 * The entire buffers are cleared (no scissor, no colormask, etc).
403 *
404 * \param buffers bitfield of PIPE_CLEAR_* values.
405 * \param color pointer to a union of fiu array for each of r, g, b, a.
406 * \param depth depth clear value in [0,1].
407 * \param stencil stencil clear value
408 */
409 void (*clear)(struct pipe_context *pipe,
410 unsigned buffers,
411 const union pipe_color_union *color,
412 double depth,
413 unsigned stencil);
414
415 /**
416 * Clear a color rendertarget surface.
417 * \param color pointer to an union of fiu array for each of r, g, b, a.
418 */
419 void (*clear_render_target)(struct pipe_context *pipe,
420 struct pipe_surface *dst,
421 const union pipe_color_union *color,
422 unsigned dstx, unsigned dsty,
423 unsigned width, unsigned height,
424 bool render_condition_enabled);
425
426 /**
427 * Clear a depth-stencil surface.
428 * \param clear_flags bitfield of PIPE_CLEAR_DEPTH/STENCIL values.
429 * \param depth depth clear value in [0,1].
430 * \param stencil stencil clear value
431 */
432 void (*clear_depth_stencil)(struct pipe_context *pipe,
433 struct pipe_surface *dst,
434 unsigned clear_flags,
435 double depth,
436 unsigned stencil,
437 unsigned dstx, unsigned dsty,
438 unsigned width, unsigned height,
439 bool render_condition_enabled);
440
441 /**
442 * Clear the texture with the specified texel. Not guaranteed to be a
443 * renderable format. Data provided in the resource's format.
444 */
445 void (*clear_texture)(struct pipe_context *pipe,
446 struct pipe_resource *res,
447 unsigned level,
448 const struct pipe_box *box,
449 const void *data);
450
451 /**
452 * Clear a buffer. Runs a memset over the specified region with the element
453 * value passed in through clear_value of size clear_value_size.
454 */
455 void (*clear_buffer)(struct pipe_context *pipe,
456 struct pipe_resource *res,
457 unsigned offset,
458 unsigned size,
459 const void *clear_value,
460 int clear_value_size);
461
462 /**
463 * Flush draw commands
464 *
465 * NOTE: use screen->fence_reference() (or equivalent) to transfer
466 * new fence ref to **fence, to ensure that previous fence is unref'd
467 *
468 * \param fence if not NULL, an old fence to unref and transfer a
469 * new fence reference to
470 * \param flags bitfield of enum pipe_flush_flags values.
471 */
472 void (*flush)(struct pipe_context *pipe,
473 struct pipe_fence_handle **fence,
474 unsigned flags);
475
476 /**
477 * Create a view on a texture to be used by a shader stage.
478 */
479 struct pipe_sampler_view * (*create_sampler_view)(struct pipe_context *ctx,
480 struct pipe_resource *texture,
481 const struct pipe_sampler_view *templat);
482
483 void (*sampler_view_destroy)(struct pipe_context *ctx,
484 struct pipe_sampler_view *view);
485
486
487 /**
488 * Get a surface which is a "view" into a resource, used by
489 * render target / depth stencil stages.
490 */
491 struct pipe_surface *(*create_surface)(struct pipe_context *ctx,
492 struct pipe_resource *resource,
493 const struct pipe_surface *templat);
494
495 void (*surface_destroy)(struct pipe_context *ctx,
496 struct pipe_surface *);
497
498
499 /**
500 * Map a resource.
501 *
502 * Transfers are (by default) context-private and allow uploads to be
503 * interleaved with rendering.
504 *
505 * out_transfer will contain the transfer object that must be passed
506 * to all the other transfer functions. It also contains useful
507 * information (like texture strides).
508 */
509 void *(*transfer_map)(struct pipe_context *,
510 struct pipe_resource *resource,
511 unsigned level,
512 unsigned usage, /* a combination of PIPE_TRANSFER_x */
513 const struct pipe_box *,
514 struct pipe_transfer **out_transfer);
515
516 /* If transfer was created with WRITE|FLUSH_EXPLICIT, only the
517 * regions specified with this call are guaranteed to be written to
518 * the resource.
519 */
520 void (*transfer_flush_region)( struct pipe_context *,
521 struct pipe_transfer *transfer,
522 const struct pipe_box *);
523
524 void (*transfer_unmap)(struct pipe_context *,
525 struct pipe_transfer *transfer);
526
527 /* One-shot transfer operation with data supplied in a user
528 * pointer.
529 */
530 void (*buffer_subdata)(struct pipe_context *,
531 struct pipe_resource *,
532 unsigned usage, /* a combination of PIPE_TRANSFER_x */
533 unsigned offset,
534 unsigned size,
535 const void *data);
536
537 void (*texture_subdata)(struct pipe_context *,
538 struct pipe_resource *,
539 unsigned level,
540 unsigned usage, /* a combination of PIPE_TRANSFER_x */
541 const struct pipe_box *,
542 const void *data,
543 unsigned stride,
544 unsigned layer_stride);
545
546 /**
547 * Flush any pending framebuffer writes and invalidate texture caches.
548 */
549 void (*texture_barrier)(struct pipe_context *);
550
551 /**
552 * Flush caches according to flags.
553 */
554 void (*memory_barrier)(struct pipe_context *, unsigned flags);
555
556 /**
557 * Creates a video codec for a specific video format/profile
558 */
559 struct pipe_video_codec *(*create_video_codec)( struct pipe_context *context,
560 const struct pipe_video_codec *templat );
561
562 /**
563 * Creates a video buffer as decoding target
564 */
565 struct pipe_video_buffer *(*create_video_buffer)( struct pipe_context *context,
566 const struct pipe_video_buffer *templat );
567
568 /**
569 * Compute kernel execution
570 */
571 /*@{*/
572 /**
573 * Define the compute program and parameters to be used by
574 * pipe_context::launch_grid.
575 */
576 void *(*create_compute_state)(struct pipe_context *context,
577 const struct pipe_compute_state *);
578 void (*bind_compute_state)(struct pipe_context *, void *);
579 void (*delete_compute_state)(struct pipe_context *, void *);
580
581 /**
582 * Bind an array of shader resources that will be used by the
583 * compute program. Any resources that were previously bound to
584 * the specified range will be unbound after this call.
585 *
586 * \param start first resource to bind.
587 * \param count number of consecutive resources to bind.
588 * \param resources array of pointers to the resources to bind, it
589 * should contain at least \a count elements
590 * unless it's NULL, in which case no new
591 * resources will be bound.
592 */
593 void (*set_compute_resources)(struct pipe_context *,
594 unsigned start, unsigned count,
595 struct pipe_surface **resources);
596
597 /**
598 * Bind an array of buffers to be mapped into the address space of
599 * the GLOBAL resource. Any buffers that were previously bound
600 * between [first, first + count - 1] are unbound after this call.
601 *
602 * \param first first buffer to map.
603 * \param count number of consecutive buffers to map.
604 * \param resources array of pointers to the buffers to map, it
605 * should contain at least \a count elements
606 * unless it's NULL, in which case no new
607 * resources will be bound.
608 * \param handles array of pointers to the memory locations that
609 * will be updated with the address each buffer
610 * will be mapped to. The base memory address of
611 * each of the buffers will be added to the value
612 * pointed to by its corresponding handle to form
613 * the final address argument. It should contain
614 * at least \a count elements, unless \a
615 * resources is NULL in which case \a handles
616 * should be NULL as well.
617 *
618 * Note that the driver isn't required to make any guarantees about
619 * the contents of the \a handles array being valid anytime except
620 * during the subsequent calls to pipe_context::launch_grid. This
621 * means that the only sensible location handles[i] may point to is
622 * somewhere within the INPUT buffer itself. This is so to
623 * accommodate implementations that lack virtual memory but
624 * nevertheless migrate buffers on the fly, leading to resource
625 * base addresses that change on each kernel invocation or are
626 * unknown to the pipe driver.
627 */
628 void (*set_global_binding)(struct pipe_context *context,
629 unsigned first, unsigned count,
630 struct pipe_resource **resources,
631 uint32_t **handles);
632
633 /**
634 * Launch the compute kernel starting from instruction \a pc of the
635 * currently bound compute program.
636 */
637 void (*launch_grid)(struct pipe_context *context,
638 const struct pipe_grid_info *info);
639 /*@}*/
640
641 /**
642 * Get sample position for an individual sample point.
643 *
644 * \param sample_count - total number of samples
645 * \param sample_index - sample to get the position values for
646 * \param out_value - return value of 2 floats for x and y position for
647 * requested sample.
648 */
649 void (*get_sample_position)(struct pipe_context *context,
650 unsigned sample_count,
651 unsigned sample_index,
652 float *out_value);
653
654 /**
655 * Query a timestamp in nanoseconds. This is completely equivalent to
656 * pipe_screen::get_timestamp() but takes a context handle for drivers
657 * that require a context.
658 */
659 uint64_t (*get_timestamp)(struct pipe_context *);
660
661 /**
662 * Flush the resource cache, so that the resource can be used
663 * by an external client. Possible usage:
664 * - flushing a resource before presenting it on the screen
665 * - flushing a resource if some other process or device wants to use it
666 * This shouldn't be used to flush caches if the resource is only managed
667 * by a single pipe_screen and is not shared with another process.
668 * (i.e. you shouldn't use it to flush caches explicitly if you want to e.g.
669 * use the resource for texturing)
670 */
671 void (*flush_resource)(struct pipe_context *ctx,
672 struct pipe_resource *resource);
673
674 /**
675 * Invalidate the contents of the resource. This is used to
676 *
677 * (1) implement EGL's semantic of undefined depth/stencil
678 * contenst after a swapbuffers. This allows a tiled renderer (for
679 * example) to not store the depth buffer.
680 *
681 * (2) implement GL's InvalidateBufferData. For backwards compatibility,
682 * you must only rely on the usability for this purpose when
683 * PIPE_CAP_INVALIDATE_BUFFER is enabled.
684 */
685 void (*invalidate_resource)(struct pipe_context *ctx,
686 struct pipe_resource *resource);
687
688 /**
689 * Return information about unexpected device resets.
690 */
691 enum pipe_reset_status (*get_device_reset_status)(struct pipe_context *ctx);
692
693 /**
694 * Dump driver-specific debug information into a stream. This is
695 * used by debugging tools.
696 *
697 * \param ctx pipe context
698 * \param stream where the output should be written to
699 * \param flags a mask of PIPE_DUMP_* flags
700 */
701 void (*dump_debug_state)(struct pipe_context *ctx, FILE *stream,
702 unsigned flags);
703
704 /**
705 * Emit string marker in cmdstream
706 */
707 void (*emit_string_marker)(struct pipe_context *ctx,
708 const char *string,
709 int len);
710
711 /**
712 * Generate mipmap.
713 * \return TRUE if mipmap generation succeeds, FALSE otherwise
714 */
715 boolean (*generate_mipmap)(struct pipe_context *ctx,
716 struct pipe_resource *resource,
717 enum pipe_format format,
718 unsigned base_level,
719 unsigned last_level,
720 unsigned first_layer,
721 unsigned last_layer);
722 };
723
724
725 #ifdef __cplusplus
726 }
727 #endif
728
729 #endif /* PIPE_CONTEXT_H */