1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-03-12 10:42:14 +00:00
Files
CLK/Outputs/OpenGL/API.hpp
2026-01-28 16:40:44 -05:00

21 lines
312 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,
};
constexpr bool supports_bitwise_operations(const API) {
return true;
}
}