1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-01-23 16:16:16 +00:00
Files
CLK/Outputs/OpenGL/API.hpp

17 lines
239 B
C++

//
// API.hpp
// Clock Signal
//
// Created by Thomas Harte on 16/12/2025.
// Copyright © 2025 Thomas Harte. All rights reserved.
//
#pragma once
namespace Outputs::Display::OpenGL {
enum class API {
OpenGL32Core,
OpenGLES3,
};
}