fix: Clang fix

This commit is contained in:
Akatsuki Levi
2024-03-15 18:23:54 -03:00
parent 09c26cac1c
commit 777587ef0e
93 changed files with 254 additions and 253 deletions

View File

@@ -398,8 +398,8 @@ u32 GraphicsEnvironment::ReadViewportTransformState() {
ComputeEnvironment::ComputeEnvironment(Tegra::Engines::KeplerCompute& kepler_compute_,
Tegra::MemoryManager& gpu_memory_, GPUVAddr program_base_,
u32 start_address_)
: GenericEnvironment{gpu_memory_, program_base_, start_address_}, kepler_compute{
&kepler_compute_} {
: GenericEnvironment{gpu_memory_, program_base_, start_address_},
kepler_compute{&kepler_compute_} {
const auto& qmd{kepler_compute->launch_description};
stage = Shader::Stage::Compute;
local_memory_size = qmd.local_pos_alloc + qmd.local_crs_alloc;