mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 12:18:09 +02:00
gallium: Fix typo.
This commit is contained in:
parent
dffad1751e
commit
135a0dd75c
1 changed files with 1 additions and 3 deletions
|
|
@ -580,7 +580,6 @@ make_1d_mipmap(struct gen_mipmap_state *ctx,
|
|||
{
|
||||
struct pipe_context *pipe = ctx->pipe;
|
||||
struct pipe_screen *screen = pipe->screen;
|
||||
struct pipe_winsys *winsys = pipe->winsys;
|
||||
const uint zslice = 0;
|
||||
uint dstLevel;
|
||||
|
||||
|
|
@ -622,7 +621,6 @@ make_2d_mipmap(struct gen_mipmap_state *ctx,
|
|||
{
|
||||
struct pipe_context *pipe = ctx->pipe;
|
||||
struct pipe_screen *screen = pipe->screen;
|
||||
struct pipe_winsys *winsys = pipe->winsys;
|
||||
const uint zslice = 0;
|
||||
uint dstLevel;
|
||||
|
||||
|
|
@ -829,7 +827,7 @@ util_destroy_gen_mipmap(struct gen_mipmap_state *ctx)
|
|||
FREE((void*) ctx->vert_shader.tokens);
|
||||
FREE((void*) ctx->frag_shader.tokens);
|
||||
|
||||
pipe_buffer_reference(pipe->winsys, &ctx->vbuf, NULL);
|
||||
pipe_buffer_reference(pipe->screen, &ctx->vbuf, NULL);
|
||||
|
||||
FREE(ctx);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue