GLX shim added

This commit is contained in:
2025-06-11 11:06:36 -05:00
parent 7f506dae2f
commit 2013e7f8bb
2 changed files with 11 additions and 0 deletions

BIN
shim/libvidsync.so Executable file

Binary file not shown.

11
shim/vidsync.c Normal file
View File

@@ -0,0 +1,11 @@
#include <GL/glx.h>
int glXGetVideoSyncSGI(unsigned int *count) {
// Always frame 0 and no wait
if (count) *count = 0;
return 0;
}
int glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count) {
return glXGetVideoSyncSGI(count);
}