[Mesa-dev] [PATCH] softpipe, llvmpipe: fix PIPE_SHADER_CAP_MAX_INPUTS value

Roland Scheidegger sroland at vmware.com
Wed Jun 24 19:29:14 PDT 2015


Reviewed-by: Roland Scheidegger <sroland at vmware.com>

And probably reference the other two too (91100,91101) if it fixes them.

Roland

Am 25.06.2015 um 01:09 schrieb Brian Paul:
> Reviewed-by: Brian Paul <brianp at vmware.com>
> 
> Want to reference bug 91099 in the commit msg?
> 
> 
> On 06/24/2015 04:59 PM, Marek Olšák wrote:
>> From: Marek Olšák <marek.olsak at amd.com>
>>
>> PIPE_MAX_SHADER_INPUTS was recently bumped to 80 because of tessellation.
>> ---
>>   src/gallium/auxiliary/gallivm/lp_bld_limits.h | 2 +-
>>   src/gallium/auxiliary/tgsi/tgsi_exec.h        | 2 +-
>>   2 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/src/gallium/auxiliary/gallivm/lp_bld_limits.h
>> b/src/gallium/auxiliary/gallivm/lp_bld_limits.h
>> index 49064fe..050076e 100644
>> --- a/src/gallium/auxiliary/gallivm/lp_bld_limits.h
>> +++ b/src/gallium/auxiliary/gallivm/lp_bld_limits.h
>> @@ -96,7 +96,7 @@ gallivm_get_shader_param(enum pipe_shader_cap param)
>>      case PIPE_SHADER_CAP_MAX_CONTROL_FLOW_DEPTH:
>>         return LP_MAX_TGSI_NESTING;
>>      case PIPE_SHADER_CAP_MAX_INPUTS:
>> -      return PIPE_MAX_SHADER_INPUTS;
>> +      return 32;
>>      case PIPE_SHADER_CAP_MAX_OUTPUTS:
>>         return 32;
>>      case PIPE_SHADER_CAP_MAX_CONST_BUFFER_SIZE:
>> diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.h
>> b/src/gallium/auxiliary/tgsi/tgsi_exec.h
>> index 208640c..e8ee256 100644
>> --- a/src/gallium/auxiliary/tgsi/tgsi_exec.h
>> +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.h
>> @@ -213,7 +213,7 @@ struct tgsi_sampler
>>    * input register files, this is the stride between two 1D
>>    * arrays.
>>    */
>> -#define TGSI_EXEC_MAX_INPUT_ATTRIBS PIPE_MAX_SHADER_INPUTS
>> +#define TGSI_EXEC_MAX_INPUT_ATTRIBS 32
>>
>>   /* The maximum number of bytes per constant buffer.
>>    */
>>
> 
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev



More information about the mesa-dev mailing list