st/nine: Idem for nine_context_gen_mipmap

Will enable to use the bind count as an information for
whether the surface/volume is used in the worker thread.

Signed-off-by: Axel Davy <axel.davy@ens.fr>
This commit is contained in:
Axel Davy
2016-12-04 01:13:25 +01:00
parent 7089d88199
commit 325324c749
3 changed files with 7 additions and 1 deletions
@@ -405,7 +405,8 @@ NineBaseTexture9_GenerateMipSubLevels( struct NineBaseTexture9 *This )
last_layer = util_max_layer(This->view[0]->texture, base_level);
nine_context_gen_mipmap(This->base.base.device, This->base.resource,
nine_context_gen_mipmap(This->base.base.device, (struct NineUnknown *)This,
This->base.resource,
base_level, last_level,
first_layer, last_layer, filter);
@@ -2694,6 +2694,7 @@ CSMT_ITEM_NO_WAIT(nine_context_clear_render_target,
}
CSMT_ITEM_NO_WAIT(nine_context_gen_mipmap,
ARG_BIND_REF(struct NineUnknown, dst),
ARG_BIND_RES(struct pipe_resource, res),
ARG_VAL(UINT, base_level),
ARG_VAL(UINT, last_level),
@@ -2703,6 +2704,9 @@ CSMT_ITEM_NO_WAIT(nine_context_gen_mipmap,
{
struct nine_context *context = &device->context;
/* We just bind dst for the bind count */
(void)dst;
util_gen_mipmap(context->pipe, res, res->format, base_level,
last_level, first_layer, last_layer, filter);
}
@@ -541,6 +541,7 @@ nine_context_clear_render_target(struct NineDevice9 *device,
void
nine_context_gen_mipmap(struct NineDevice9 *device,
struct NineUnknown *dst,
struct pipe_resource *res,
UINT base_level, UINT last_level,
UINT first_layer, UINT last_layer,