mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 06:25:46 +00:00
gpu: Rename Get3DEngine() to Maxwell3D()
This makes it match its const qualified equivalent.
This commit is contained in:
parent
2a56f71e58
commit
d923d8f50c
4 changed files with 17 additions and 14 deletions
|
@ -20,7 +20,11 @@ GPU::GPU() {
|
|||
|
||||
GPU::~GPU() = default;
|
||||
|
||||
const Tegra::Engines::Maxwell3D& GPU::Get3DEngine() const {
|
||||
const Engines::Maxwell3D& GPU::Maxwell3D() const {
|
||||
return *maxwell_3d;
|
||||
}
|
||||
|
||||
Engines::Maxwell3D& GPU::Maxwell3D() {
|
||||
return *maxwell_3d;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue