mirror of
https://github.com/86Box/86Box.git
synced 2026-02-27 17:34:25 -07:00
54 lines
1.0 KiB
C++
54 lines
1.0 KiB
C++
/*
|
|
* 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 <cstdbool>
|
|
#include <cstdint>
|
|
|
|
|
|
/* Qt includes*/
|
|
#include <QDebug>
|
|
#include <QComboBox>
|
|
#include <QPushButton>
|
|
#include <QFormLayout>
|
|
#include <QSpinBox>
|
|
#include <QCheckBox>
|
|
#include <QFrame>
|
|
#include <QLineEdit>
|
|
#include <QLabel>
|
|
#include <QDir>
|
|
#include <QSettings>
|
|
#include <qt_gpudebug_vram.hpp>
|
|
#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()
|
|
{
|
|
|
|
} |