mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 20:08:06 +02:00
gallium: API cleanup, remove pointless pipe_constant_buffer
This commit is contained in:
parent
cc7a2d8e64
commit
beb712ee9a
2 changed files with 1 additions and 10 deletions
|
|
@ -156,7 +156,7 @@ struct pipe_context {
|
|||
|
||||
void (*set_constant_buffer)( struct pipe_context *,
|
||||
uint shader, uint index,
|
||||
const struct pipe_constant_buffer *buf );
|
||||
const struct pipe_buffer *buf );
|
||||
|
||||
void (*set_framebuffer_state)( struct pipe_context *,
|
||||
const struct pipe_framebuffer_state * );
|
||||
|
|
|
|||
|
|
@ -178,15 +178,6 @@ struct pipe_clip_state
|
|||
};
|
||||
|
||||
|
||||
/**
|
||||
* Constants for vertex/fragment shaders
|
||||
*/
|
||||
struct pipe_constant_buffer
|
||||
{
|
||||
struct pipe_buffer *buffer;
|
||||
};
|
||||
|
||||
|
||||
struct pipe_shader_state
|
||||
{
|
||||
const struct tgsi_token *tokens;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue