Files
ox/src/nostalgia/core/opengl/context.cpp
T

15 lines
222 B
C++

/*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/
#include "context.hpp"
#include "gfx.hpp"
namespace nostalgia::core {
GlContext::~GlContext() noexcept {
shutdownGfx(this);
}
}