st/nine: Implement nine_context_range_upload

Will be used to upload buffers.

Signed-off-by: Axel Davy <axel.davy@ens.fr>
This commit is contained in:
Axel Davy
2016-12-01 22:44:06 +01:00
parent 1843e36b03
commit a78b5f4378
2 changed files with 19 additions and 0 deletions
@@ -2692,6 +2692,17 @@ CSMT_ITEM_NO_WAIT(nine_context_clear_render_target,
context->pipe->clear_render_target(context->pipe, surf, &rgba, x, y, width, height, false);
}
CSMT_ITEM_NO_WAIT_WITH_COUNTER(nine_context_range_upload,
ARG_BIND_RES(struct pipe_resource, res),
ARG_VAL(unsigned, offset),
ARG_VAL(unsigned, size),
ARG_VAL(const void *, data))
{
struct nine_context *context = &device->context;
context->pipe->buffer_subdata(context->pipe, res, 0, offset, size, data);
}
struct pipe_query *
nine_context_create_query(struct NineDevice9 *device, unsigned query_type)
{
@@ -539,6 +539,14 @@ nine_context_clear_render_target(struct NineDevice9 *device,
UINT width,
UINT height);
void
nine_context_range_upload(struct NineDevice9 *device,
unsigned *counter,
struct pipe_resource *res,
unsigned offset,
unsigned size,
const void *data);
struct pipe_query *
nine_context_create_query(struct NineDevice9 *device, unsigned query_type);