mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
iris: Move iris_stream_output_target def to iris_context.h
now that it doesn't have genxml
This commit is contained in:
parent
cf4931e586
commit
31357bae4b
2 changed files with 10 additions and 10 deletions
|
|
@ -306,6 +306,16 @@ struct iris_shader_state {
|
|||
uint32_t bound_sampler_views;
|
||||
};
|
||||
|
||||
/**
|
||||
* Gallium CSO for stream output (transform feedback) targets.
|
||||
*/
|
||||
struct iris_stream_output_target {
|
||||
struct pipe_stream_output_target base;
|
||||
|
||||
/** Storage holding the offset where we're writing in the buffer */
|
||||
struct iris_state_ref offset;
|
||||
};
|
||||
|
||||
/**
|
||||
* Virtual table for generation-specific (genxml) function calls.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -2502,16 +2502,6 @@ iris_bind_vertex_elements_state(struct pipe_context *ctx, void *state)
|
|||
ice->state.dirty |= IRIS_DIRTY_VERTEX_ELEMENTS;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gallium CSO for stream output (transform feedback) targets.
|
||||
*/
|
||||
struct iris_stream_output_target {
|
||||
struct pipe_stream_output_target base;
|
||||
|
||||
/** Storage holding the offset where we're writing in the buffer */
|
||||
struct iris_state_ref offset;
|
||||
};
|
||||
|
||||
/**
|
||||
* The pipe->create_stream_output_target() driver hook.
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue