Browse Source

video_core/engine: Consistently initialize rasterizer pointers

Ensures all of the engines have consistent and deterministic
initialization of the rasterizer pointers.
nce_cpp
Lioncash 4 years ago
parent
commit
23ec5faf24
  1. 2
      src/video_core/engines/fermi_2d.h
  2. 2
      src/video_core/engines/maxwell_dma.h

2
src/video_core/engines/fermi_2d.h

@ -299,7 +299,7 @@ public:
};
private:
VideoCore::RasterizerInterface* rasterizer;
VideoCore::RasterizerInterface* rasterizer = nullptr;
/// Performs the copy from the source surface to the destination surface as configured in the
/// registers.

2
src/video_core/engines/maxwell_dma.h

@ -227,7 +227,7 @@ private:
Core::System& system;
MemoryManager& memory_manager;
VideoCore::RasterizerInterface* rasterizer;
VideoCore::RasterizerInterface* rasterizer = nullptr;
std::vector<u8> read_buffer;
std::vector<u8> write_buffer;

Loading…
Cancel
Save