diff options
author | Kenneth Graunke <[email protected]> | 2018-04-20 17:42:07 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:06 -0800 |
commit | c75a1254a4c1b6d7ef9a93e4fcd235e9690dd778 (patch) | |
tree | 810e31939daf9fdc981baeb630d1d50b92269298 /src/gallium/drivers/iris/iris_batch.h | |
parent | 39e795d4731ca7eb83956fcc5e9b9edb7840a66a (diff) |
iris: Move get_command_space to iris_batch.c
for reuse in blorp. it's a better interface anyway.
Diffstat (limited to 'src/gallium/drivers/iris/iris_batch.h')
-rw-r--r-- | src/gallium/drivers/iris/iris_batch.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/iris/iris_batch.h b/src/gallium/drivers/iris/iris_batch.h index 9d8f8c57467..8af1415b649 100644 --- a/src/gallium/drivers/iris/iris_batch.h +++ b/src/gallium/drivers/iris/iris_batch.h @@ -86,6 +86,7 @@ void iris_init_batch(struct iris_batch *batch, uint8_t ring); void iris_batch_free(struct iris_batch *batch); void iris_require_command_space(struct iris_batch *batch, unsigned size); +void *iris_get_command_space(struct iris_batch *batch, unsigned bytes); void iris_batch_emit(struct iris_batch *batch, const void *data, unsigned size); int _iris_batch_flush_fence(struct iris_batch *batch, |