mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-25 17:40:05 +01:00
16 lines
249 B
C
16 lines
249 B
C
|
|
#ifndef CAPABILITIES_H
|
||
|
|
#define CAPABILITIES_H
|
||
|
|
|
||
|
|
#include <stdbool.h>
|
||
|
|
|
||
|
|
struct glCapabilities {
|
||
|
|
int stereo;
|
||
|
|
int aux_buffers;
|
||
|
|
int buffers;
|
||
|
|
/*TODO handle STENCIL and ACCUM*/
|
||
|
|
};
|
||
|
|
|
||
|
|
bool getGlCapabilities(struct glCapabilities *cap);
|
||
|
|
|
||
|
|
#endif
|