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:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user