mirror of
https://github.com/86Box/86Box.git
synced 2026-02-28 09:54:21 -07:00
add vram viewer window
This commit is contained in:
@@ -1 +1,54 @@
|
||||
/*
|
||||
* 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()
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user