Lines Matching defs:parameters
16 D3D12_ROOT_PARAMETER parameters[3];
19 parameters[0].ParameterType = D3D12_ROOT_PARAMETER_TYPE_CBV;
20 parameters[0].Descriptor.ShaderRegister = 0;
21 parameters[0].Descriptor.RegisterSpace = GrSPIRVUniformHandler::kUniformDescriptorSet;
22 parameters[0].ShaderVisibility = D3D12_SHADER_VISIBILITY_ALL;
71 parameters[parameterCount].ParameterType = D3D12_ROOT_PARAMETER_TYPE_DESCRIPTOR_TABLE;
72 parameters[parameterCount].DescriptorTable.NumDescriptorRanges = numDescriptorRanges;
73 parameters[parameterCount].DescriptorTable.pDescriptorRanges = shaderViewRanges.get();
74 parameters[parameterCount].ShaderVisibility = D3D12_SHADER_VISIBILITY_ALL;
79 parameters[parameterCount].ParameterType = D3D12_ROOT_PARAMETER_TYPE_DESCRIPTOR_TABLE;
80 parameters[parameterCount].DescriptorTable.NumDescriptorRanges = numTextureSamplers;
81 parameters[parameterCount].DescriptorTable.pDescriptorRanges = samplerRanges.get();
82 parameters[parameterCount].ShaderVisibility = D3D12_SHADER_VISIBILITY_ALL;
88 rootDesc.pParameters = parameters;