diff options
author | Marek Olšák <[email protected]> | 2011-10-29 17:56:12 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-10-30 02:25:51 +0200 |
commit | b40edc63d7d272ac132fded52f3119f4780c7e6b (patch) | |
tree | d16691ef65033fb867d0db80532cffac0d31946d /src/gallium/drivers/r600/r600_hw_context_priv.h | |
parent | 44c65d0e4e22bbfaba31de68fc4e48b7decf7c02 (diff) |
r600g: shortcut ctx->screen->ws to ctx->ws
Diffstat (limited to 'src/gallium/drivers/r600/r600_hw_context_priv.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_hw_context_priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_hw_context_priv.h b/src/gallium/drivers/r600/r600_hw_context_priv.h index 1f18e0ee405..0cbd94bb4c8 100644 --- a/src/gallium/drivers/r600/r600_hw_context_priv.h +++ b/src/gallium/drivers/r600/r600_hw_context_priv.h @@ -78,7 +78,7 @@ static INLINE unsigned r600_context_bo_reloc(struct r600_context *ctx, struct r6 assert(usage); - reloc_index = ctx->screen->ws->cs_add_reloc(ctx->cs, rbo->cs_buf, usage); + reloc_index = ctx->ws->cs_add_reloc(ctx->cs, rbo->cs_buf, usage); if (reloc_index >= ctx->creloc) ctx->creloc = reloc_index+1; |