mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
35cc323ee4
* Building qrenderdoc on windows will be supported just because that's likely where I will be developing it mostly, but for the foreseeable future it won't be built by default. If it ever gets good enough to replace the .NET UI, then we can look at it again.
16 lines
255 B
C++
16 lines
255 B
C++
#include "mainwindow.h"
|
|
#include <QApplication>
|
|
|
|
#include "renderdoc_replay.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
RENDERDOC_LogText("QRenderDoc initialising.");
|
|
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|