xserver/hw/xquartz/GL/capabilities.h

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