mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-20 23:35:39 +00:00
11 lines
259 B
C
11 lines
259 B
C
// SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
|
|
// Fix glad.h including windows.h
|
|
#ifdef _WIN32
|
|
#include "common/windows_headers.h"
|
|
#endif
|
|
|
|
#include "glad/gl.h" |