mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-07-09 01:00:51 +00:00
15 lines
227 B
C++
15 lines
227 B
C++
#include "TextureViewer.h"
|
|
#include "ui_TextureViewer.h"
|
|
|
|
TextureViewer::TextureViewer(QWidget *parent) :
|
|
QFrame(parent),
|
|
ui(new Ui::TextureViewer)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
TextureViewer::~TextureViewer()
|
|
{
|
|
delete ui;
|
|
}
|