This file contains hidden or 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
| // jpka, 2025: Q&D example to make glBars transparent, | |
| // this is impossible with glut. And make it pure C. | |
| // Note, there will be no MSAA using integrated GPU. | |
| // The fun fact is all colors were already made correctly | |
| // using alpha, as if it was already transparent years ago. | |
| // Tested w/ Archlinux. | |
| // gcc -g -Wall -lm -lX11 -lXrender -lGL -ljack -DHAS_GL jack_glbars.c -o jack_glbars | |
| /* XMMS - Cross-platform multimedia player | |
| * Copyright (C) 1998-2000 Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies |
This file contains hidden or 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
| #include <X11/Xlib.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int main() | |
| { | |
| Display *display; | |
| Window window; | |
| XEvent event; | |
| int s; |