diff options
author | Rob Clark <robclark@freedesktop.org> | 2014-11-05 10:42:13 -0500 |
---|---|---|
committer | Rob Clark <robclark@freedesktop.org> | 2014-11-14 13:59:31 -0500 |
commit | e091c08089f43e0a4f4edf8e5e24f2617364f044 (patch) | |
tree | 356622a500d54cfec88fdea07af45dce44faeef9 /src/gallium/drivers/freedreno/freedreno_context.h | |
parent | 2f024d2b1067496fad292efd2ca1b0ac9702a4dd (diff) |
freedreno: rename draw->draw_vbo
Gets rid of a namespace conflict w/ a4xx which wants an fd4_draw()
version of fd_draw()..
Signed-off-by: Rob Clark <robclark@freedesktop.org>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_context.h')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_context.h b/src/gallium/drivers/freedreno/freedreno_context.h index 22d950c090..bf9abaf885 100644 --- a/src/gallium/drivers/freedreno/freedreno_context.h +++ b/src/gallium/drivers/freedreno/freedreno_context.h @@ -347,7 +347,7 @@ struct fd_context { void (*emit_sysmem_prep)(struct fd_context *ctx); /* draw: */ - void (*draw)(struct fd_context *pctx, const struct pipe_draw_info *info); + void (*draw_vbo)(struct fd_context *pctx, const struct pipe_draw_info *info); void (*clear)(struct fd_context *ctx, unsigned buffers, const union pipe_color_union *color, double depth, unsigned stencil); }; |