nintendo ultra 64 + formatting
This commit is contained in:
parent
72011e374b
commit
e34eaee2e2
|
@ -63,11 +63,10 @@ const ComputePipeline* PipelineCache::GetComputePipeline() {
|
||||||
return pipeline;
|
return pipeline;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ShouldSkipShader(u32 shader_hash, const char* shader_type) {
|
bool ShouldSkipShader(u64 shader_hash, const char* shader_type) {
|
||||||
static constexpr u32 skip_hashes[] = {
|
static constexpr u64 skip_hashes[] = {0xdeadbeefULL};
|
||||||
0xdeadbeefULL
|
if (std::ranges::find(std::begin(skip_hashes), std::end(skip_hashes), shader_hash) !=
|
||||||
};
|
std::end(skip_hashes)) {
|
||||||
if (std::ranges::find(std::begin(skip_hashes), std::end(skip_hashes), shader_hash) != std::end(skip_hashes)) {
|
|
||||||
LOG_WARNING(Render_Vulkan, "Skipped {} shader hash {:#x}.", shader_type, shader_hash);
|
LOG_WARNING(Render_Vulkan, "Skipped {} shader hash {:#x}.", shader_type, shader_hash);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue