-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OpenGL -> OpenGL_non_windows_non_darwin, since EGL targets neither
- Loading branch information
1 parent
3e49973
commit b178313
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// SPDX-License-Identifier: CC0-1.0 | ||
// infoware - C++ System information Library | ||
|
||
|
||
#ifndef INFOWARE_USE_D3D | ||
#ifndef INFOWARE_USE_OPENCL | ||
#ifdef _WIN32 | ||
#ifdef INFOWARE_USE_OPENGL | ||
|
||
#include "infoware/gpu.hpp" | ||
|
||
|
||
std::vector<iware::gpu::device_properties_t> iware::gpu::device_properties() { | ||
#warning No OpenGL Win32 implementation | ||
return {}; | ||
} | ||
|
||
|
||
#endif | ||
#endif | ||
#endif | ||
#endif |