/* * 86Box A hypervisor and IBM PC system emulator that specializes in * running old operating systems and software designed for IBM * PC systems and compatibles from 1981 through fairly recent * system designs based on the PCI bus. * * This file is part of the 86Box distribution. * * GPU Debugging Tools - VRAM Viewer implementation * * * * Authors: starfrost * * Copyright 2025 starfrost */ /* C++ includes */ #include #include /* Qt includes*/ #include #include #include #include #include #include #include #include #include #include #include #include #include "ui_qt_gpudebug_vram.h" /* 86Box core includes */ extern "C" { } GPUDebugVRAMDialog::GPUDebugVRAMDialog(QWidget *parent) : QDialog(parent) , ui(new Ui::GPUDebugVRAMDialog) { ui->setupUi(this); } GPUDebugVRAMDialog::~GPUDebugVRAMDialog() { }