| 174 | } |
| 175 | |
| 176 | bool GPUShader::HasShader(const StringAnsiView& name, int32 permutationIndex) const |
| 177 | { |
| 178 | const uint32 hash = HashPermutation(name, permutationIndex); |
| 179 | return _shaders.ContainsKey(hash); |
| 180 | } |
| 181 | |
| 182 | GPUShaderProgram* GPUShader::GetShader(ShaderStage stage, const StringAnsiView& name, int32 permutationIndex) const |
| 183 | { |
no test coverage detected