mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-18 20:07:49 +00:00
gpu: Move GPUVAddr definition to common_types.
This commit is contained in:
parent
aff4b0b50a
commit
6f872bd580
17 changed files with 31 additions and 39 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue