mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 21:17:27 +01:00
ee4ebaaa95
Updates #1129
35 lines
785 B
Go
35 lines
785 B
Go
// SPDX-License-Identifier: MIT
|
|
|
|
// +build freebsd linux
|
|
|
|
package gl
|
|
|
|
// #include <GL/glx.h>
|
|
//
|
|
// static const char* RendererDeviceString() {
|
|
// #ifdef GLX_MESA_query_renderer
|
|
// static PFNGLXQUERYCURRENTRENDERERSTRINGMESAPROC queryString;
|
|
// if (!queryString) {
|
|
// queryString = (PFNGLXQUERYCURRENTRENDERERSTRINGMESAPROC)
|
|
// glXGetProcAddressARB((const GLubyte *)"glXQueryCurrentRendererStringMESA");
|
|
// }
|
|
// if (!queryString) {
|
|
// return "";
|
|
// }
|
|
//
|
|
// static const char* rendererDevice;
|
|
// if (!rendererDevice) {
|
|
// rendererDevice = queryString(GLX_RENDERER_DEVICE_ID_MESA);
|
|
// }
|
|
//
|
|
// return rendererDevice;
|
|
// #else
|
|
// return "";
|
|
// #endif
|
|
// }
|
|
import "C"
|
|
|
|
func RendererDeviceString() string {
|
|
return C.GoString(C.RendererDeviceString())
|
|
}
|