From: Brian Paul Date: Tue, 20 Mar 2012 23:43:52 +0000 (-0600) Subject: st/mesa: set MaxUnrollIterations = 255 X-Git-Tag: 062012170305~1052 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=20836c81851e0df29a8ee9c86e5e5388738c840b;p=profile%2Fivi%2Fmesa.git st/mesa: set MaxUnrollIterations = 255 The default was 32 for the EmitNoLoops=0 case. This allows the oZone3D soft shadows test to work properly with the vmware driver. Jose reported that SM3 supports up to 255 loop iterations. NOTE: This is a candidate for the 8.0 branch. Reviewed-by: José Fonseca --- diff --git a/src/mesa/state_tracker/st_extensions.c b/src/mesa/state_tracker/st_extensions.c index 33bc6ed..afea0ea 100644 --- a/src/mesa/state_tracker/st_extensions.c +++ b/src/mesa/state_tracker/st_extensions.c @@ -216,6 +216,8 @@ void st_init_limits(struct st_context *st) if (options->EmitNoLoops) options->MaxUnrollIterations = MIN2(screen->get_shader_param(screen, sh, PIPE_SHADER_CAP_MAX_INSTRUCTIONS), 65536); + else + options->MaxUnrollIterations = 255; /* SM3 limit */ } /* PIPE_SHADER_CAP_MAX_INPUTS for the FS specifies the maximum number