stuff-from-scratch/test/graphics/TestOpenGlRendering.cpp
2023-12-27 12:20:02 +00:00

22 lines
460 B
C++

#include "TestCase.h"
#include "TestCaseRunner.h"
#include "MainApplication.h"
#include "GuiApplication.h"
#include "TestFramework.h"
#include "Pointer.h"
#include "String.h"
#include <iostream>
TEST_CASE(TestOpenGlRendering, "graphics")
{
auto app = std::make_unique<GuiApplication>();
app->setUiInterfaceBackend(UiInterfaceFactory::Backend::X11);
//app->setUiInterfaceBackend(UiInterfaceFactory::Backend::X11_RASTER);
//app->run();
};