diff options
author | Marek Olšák <[email protected]> | 2019-04-05 11:18:21 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-04-05 11:18:39 -0400 |
commit | 26e161b1e942564b649d355df359fc2e22b46188 (patch) | |
tree | 221f9b35a29f437a9006db4d3bda59c198b0ee28 | |
parent | 0f416b85fbb2a3988ddc2c81540e9aadfd63d6ae (diff) |
tegra: fix the build after the set_shader_buffers change
-rw-r--r-- | src/gallium/drivers/tegra/tegra_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/tegra/tegra_context.c b/src/gallium/drivers/tegra/tegra_context.c index ddca23a52f1..e9ab1f61da6 100644 --- a/src/gallium/drivers/tegra/tegra_context.c +++ b/src/gallium/drivers/tegra/tegra_context.c @@ -589,7 +589,7 @@ tegra_set_shader_buffers(struct pipe_context *pcontext, unsigned int shader, struct tegra_context *context = to_tegra_context(pcontext); context->gpu->set_shader_buffers(context->gpu, shader, start, count, - buffers); + buffers, writable_bitmask); } static void |