mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 17:40:39 +00:00
23 lines
309 B
C++
23 lines
309 B
C++
#ifndef TEXTUREVIEWER_H
|
|
#define TEXTUREVIEWER_H
|
|
|
|
#include <QFrame>
|
|
|
|
namespace Ui {
|
|
class TextureViewer;
|
|
}
|
|
|
|
class TextureViewer : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TextureViewer(QWidget *parent = 0);
|
|
~TextureViewer();
|
|
|
|
private:
|
|
Ui::TextureViewer *ui;
|
|
};
|
|
|
|
#endif // TEXTUREVIEWER_H
|