mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2025-02-20 11:43:27 +08:00
OpenGL (Haiku): add support
This commit is contained in:
parent
76b8b9a44b
commit
9018fda92e
@ -1160,7 +1160,7 @@ elseif(Haiku)
|
||||
src/detection/memory/memory_haiku.c
|
||||
src/detection/mouse/mouse_haiku.cpp
|
||||
src/detection/netio/netio_haiku.cpp
|
||||
src/detection/opengl/opengl_linux.c
|
||||
src/detection/opengl/opengl_haiku.cpp
|
||||
src/detection/os/os_haiku.c
|
||||
src/detection/packages/packages_haiku.c
|
||||
src/detection/poweradapter/poweradapter_nosupport.c
|
||||
@ -1650,6 +1650,7 @@ elseif(Haiku)
|
||||
PRIVATE "media"
|
||||
PRIVATE "device"
|
||||
PRIVATE "bluetooth"
|
||||
PRIVATE "GL"
|
||||
PRIVATE "be"
|
||||
PRIVATE "gnu"
|
||||
)
|
||||
|
38
src/detection/opengl/opengl_haiku.cpp
Normal file
38
src/detection/opengl/opengl_haiku.cpp
Normal file
@ -0,0 +1,38 @@
|
||||
#include <OpenGLKit.h>
|
||||
|
||||
extern "C" {
|
||||
#include "opengl.h"
|
||||
#include "common/io/io.h"
|
||||
#if FF_HAVE_EGL
|
||||
const char* ffOpenGLDetectByEGL(FFOpenGLResult* result);
|
||||
#endif
|
||||
void ffOpenGLHandleResult(FFOpenGLResult* result, __typeof__(&glGetString) ffglGetString);
|
||||
}
|
||||
|
||||
static const char* oglDetectOpenGL(FFOpenGLResult* result)
|
||||
{
|
||||
BApplication app("application/x-vnd.fastfetch-cli-fastfetch");
|
||||
FF_SUPPRESS_IO();
|
||||
|
||||
BGLView glView(BRect(), "ff_ogl_view", B_FOLLOW_NONE, B_WILL_DRAW, BGL_RGB);
|
||||
auto ffglGetString = (decltype(&glGetString)) glView.GetGLProcAddress("glGetString");
|
||||
if (!ffglGetString) return "glView.GetGLProcAddress() failed";
|
||||
ffOpenGLHandleResult(result, ffglGetString);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const char* ffDetectOpenGL(FFOpenGLOptions* options, FFOpenGLResult* result)
|
||||
{
|
||||
if (options->library == FF_OPENGL_LIBRARY_AUTO)
|
||||
return oglDetectOpenGL(result);
|
||||
else if (options->library == FF_OPENGL_LIBRARY_EGL)
|
||||
{
|
||||
#if FF_HAVE_EGL
|
||||
return ffOpenGLDetectByEGL(result);
|
||||
#else
|
||||
return "fastfetch was compiled without egl support";
|
||||
#endif
|
||||
}
|
||||
else
|
||||
return "Unsupported OpenGL library";
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user