gpu: Rename Get3DEngine() to Maxwell3D()

This makes it match its const qualified equivalent.
This commit is contained in:
Lioncash 2018-07-20 18:31:36 -04:00
parent 2b7d862366
commit 863579736c
4 changed files with 17 additions and 14 deletions

View file

@ -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;
}