Address CR comments

Note: CR comments regarding `ShaderSet` and `PipelineStages` will be addressed at a later date with a common class for associative enum arrays.
This commit is contained in:
PixelyIon
2021-12-24 12:39:18 +05:30
parent e1e14e781f
commit a4041364e1
4 changed files with 36 additions and 34 deletions

View File

@ -117,11 +117,11 @@ namespace skyline::gpu {
}
[[nodiscard]] u32 SharedMemorySize() const final {
return 0; // Shared memory size is only relevant for compute shaders
return 0; // Only relevant for compute shaders
}
[[nodiscard]] std::array<u32, 3> WorkgroupSize() const final {
return {0, 0, 0}; // Workgroup size is only relevant for compute shaders
return {0, 0, 0}; // Only relevant for compute shaders
}
};
@ -156,11 +156,11 @@ namespace skyline::gpu {
}
[[nodiscard]] u32 SharedMemorySize() const final {
return 0;
return 0; // Only relevant for compute shaders
}
[[nodiscard]] std::array<u32, 3> WorkgroupSize() const final {
return {0, 0, 0};
return {0, 0, 0}; // Only relevant for compute shaders
}
};