diff options
author | Rob Clark <[email protected]> | 2014-11-05 10:42:13 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2014-11-14 13:59:31 -0500 |
commit | e091c08089f43e0a4f4edf8e5e24f2617364f044 (patch) | |
tree | 356622a500d54cfec88fdea07af45dce44faeef9 /src/gallium/drivers/freedreno/freedreno_draw.c | |
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 <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_draw.c')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_draw.c b/src/gallium/drivers/freedreno/freedreno_draw.c index 525215e4cbb..213bad84e84 100644 --- a/src/gallium/drivers/freedreno/freedreno_draw.c +++ b/src/gallium/drivers/freedreno/freedreno_draw.c @@ -117,7 +117,7 @@ fd_draw_vbo(struct pipe_context *pctx, const struct pipe_draw_info *info) util_format_short_name(pipe_surface_format(pfb->zsbuf))); fd_hw_query_set_stage(ctx, ctx->ring, FD_STAGE_DRAW); - ctx->draw(ctx, info); + ctx->draw_vbo(ctx, info); /* if an app (or, well, piglit test) does many thousands of draws * without flush (or anything which implicitly flushes, like |