iris: Only resolve inputs for actual shader stages
We don't need to consider compute at render time, and don't need to consider disabled stages. 4% on drawoverhead.
This commit is contained in:
@@ -677,8 +677,8 @@ uint64_t iris_timebase_scale(const struct gen_device_info *devinfo,
|
|||||||
|
|
||||||
/* iris_resolve.c */
|
/* iris_resolve.c */
|
||||||
|
|
||||||
void iris_predraw_resolve_inputs(struct iris_context *ice,
|
void iris_predraw_resolve_inputs(struct iris_batch *batch,
|
||||||
struct iris_batch *batch);
|
struct iris_shader_state *shs);
|
||||||
void iris_predraw_resolve_framebuffer(struct iris_context *ice,
|
void iris_predraw_resolve_framebuffer(struct iris_context *ice,
|
||||||
struct iris_batch *batch);
|
struct iris_batch *batch);
|
||||||
void iris_postdraw_update_resolve_tracking(struct iris_context *ice,
|
void iris_postdraw_update_resolve_tracking(struct iris_context *ice,
|
||||||
|
@@ -98,7 +98,11 @@ iris_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info *info)
|
|||||||
|
|
||||||
iris_update_compiled_shaders(ice);
|
iris_update_compiled_shaders(ice);
|
||||||
|
|
||||||
iris_predraw_resolve_inputs(ice, batch);
|
for (gl_shader_stage stage = 0; stage < MESA_SHADER_COMPUTE; stage++) {
|
||||||
|
if (ice->shaders.prog[stage])
|
||||||
|
iris_predraw_resolve_inputs(batch, &ice->state.shaders[stage]);
|
||||||
|
}
|
||||||
|
|
||||||
iris_predraw_resolve_framebuffer(ice, batch);
|
iris_predraw_resolve_framebuffer(ice, batch);
|
||||||
|
|
||||||
iris_binder_reserve_3d(ice);
|
iris_binder_reserve_3d(ice);
|
||||||
|
@@ -74,16 +74,11 @@ resolve_image_views(struct iris_batch *batch,
|
|||||||
* enabled depth texture, and flush the render cache for any dirty textures.
|
* enabled depth texture, and flush the render cache for any dirty textures.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
iris_predraw_resolve_inputs(struct iris_context *ice,
|
iris_predraw_resolve_inputs(struct iris_batch *batch,
|
||||||
struct iris_batch *batch)
|
struct iris_shader_state *shs)
|
||||||
{
|
{
|
||||||
for (gl_shader_stage stage = 0; stage < MESA_SHADER_STAGES; stage++) {
|
resolve_sampler_views(batch, shs);
|
||||||
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
resolve_image_views(batch, shs);
|
||||||
resolve_sampler_views(batch, shs);
|
|
||||||
resolve_image_views(batch, shs);
|
|
||||||
}
|
|
||||||
|
|
||||||
// XXX: storage images
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Reference in New Issue
Block a user