stuff-from-scratch/test/graphics/TestOpenGlRendering.cpp
2023-12-21 09:18:44 +00:00

22 lines
459 B
C++

#include "TestCase.h"
#include "TestCaseRunner.h"
#include "MainApplication.h"
#include "GuiApplication.h"
#include "TestFramework.h"
#include "Memory.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();
};