Files
renderdoc/qrenderdoc/main.cpp
T
baldurk 35cc323ee4 Add skeleton qrenderdoc (just a qt template) & include in linux build
* 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.
2015-07-10 16:38:14 +02:00

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();
}