mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-18 17:17:59 -05:00
gpu: Move GPUVAddr definition to common_types.
This commit is contained in:
@ -261,7 +261,7 @@ void GraphicsSurfaceWidget::OnSurfaceSourceChanged(int new_value) {
|
||||
|
||||
void GraphicsSurfaceWidget::OnSurfaceAddressChanged(qint64 new_value) {
|
||||
if (surface_address != new_value) {
|
||||
surface_address = static_cast<Tegra::GPUVAddr>(new_value);
|
||||
surface_address = static_cast<GPUVAddr>(new_value);
|
||||
|
||||
surface_source_list->setCurrentIndex(static_cast<int>(Source::Custom));
|
||||
emit Update();
|
||||
|
@ -87,7 +87,7 @@ private:
|
||||
QPushButton* save_surface;
|
||||
|
||||
Source surface_source;
|
||||
Tegra::GPUVAddr surface_address;
|
||||
GPUVAddr surface_address;
|
||||
unsigned surface_width;
|
||||
unsigned surface_height;
|
||||
Tegra::Texture::TextureFormat surface_format;
|
||||
|
Reference in New Issue
Block a user