mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 15:00:02 +00:00
gl_shader_cache: Fix clang-format issues
This commit is contained in:
parent
6b0d017675
commit
2a4044a858
2 changed files with 2 additions and 4 deletions
|
@ -323,8 +323,7 @@ Shader CachedShader::CreateStageFromCache(const ShaderParameters& params,
|
||||||
new CachedShader(params, GetProgramType(program_type), std::move(result)));
|
new CachedShader(params, GetProgramType(program_type), std::move(result)));
|
||||||
}
|
}
|
||||||
|
|
||||||
Shader CachedShader::CreateKernelFromMemory(const ShaderParameters& params,
|
Shader CachedShader::CreateKernelFromMemory(const ShaderParameters& params, ProgramCode&& code) {
|
||||||
ProgramCode&& code) {
|
|
||||||
auto result{CreateProgram(params.device, ProgramType::Compute, code, {})};
|
auto result{CreateProgram(params.device, ProgramType::Compute, code, {})};
|
||||||
|
|
||||||
const auto code_size{CalculateProgramSize(code)};
|
const auto code_size{CalculateProgramSize(code)};
|
||||||
|
|
|
@ -55,8 +55,7 @@ class CachedShader final : public RasterizerCacheObject {
|
||||||
public:
|
public:
|
||||||
static Shader CreateStageFromMemory(const ShaderParameters& params,
|
static Shader CreateStageFromMemory(const ShaderParameters& params,
|
||||||
Maxwell::ShaderProgram program_type,
|
Maxwell::ShaderProgram program_type,
|
||||||
ProgramCode&& program_code,
|
ProgramCode&& program_code, ProgramCode&& program_code_b);
|
||||||
ProgramCode&& program_code_b);
|
|
||||||
|
|
||||||
static Shader CreateStageFromCache(const ShaderParameters& params,
|
static Shader CreateStageFromCache(const ShaderParameters& params,
|
||||||
Maxwell::ShaderProgram program_type,
|
Maxwell::ShaderProgram program_type,
|
||||||
|
|
Loading…
Reference in a new issue