diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2014-10-03 18:05:10 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2014-10-31 15:29:14 -0600 |
| commit | bdd966ec2e2207612ffa0135367c1805614da05e (patch) | |
| tree | be102f41d9d07862708ff5628e110feaa595176c | |
| parent | 4326a2e002448c4fc69913d1a838dae89f0072b0 (diff) | |
| download | usermoji-bdd966ec2e2207612ffa0135367c1805614da05e.tar.xz | |
checkpoint: Adding GLSL compiler extension
| -rw-r--r-- | include/xglIntelExt.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/xglIntelExt.h b/include/xglIntelExt.h new file mode 100644 index 00000000..d5935616 --- /dev/null +++ b/include/xglIntelExt.h @@ -0,0 +1,24 @@ +/* IN DEVELOPMENT. DO NOT SHIP. */ + +#ifndef __XGLINTELEXT_H__ +#define __XGLINTELEXT_H__ + +#include <xcb/xcb.h> +#include <xcb/randr.h> +#include "xgl.h" + +#ifdef __cplusplus +extern "C" +{ +#endif // __cplusplus + +typedef enum _XGL_INTEL_STRUCTURE_TYPE +{ + XGL_INTEL_STRUCTURE_TYPE_SHADER_CREATE_INFO = 1000, +} XGL_INTEL_STRUCTURE_TYPE; + +#ifdef __cplusplus +} // extern "C" +#endif // __cplusplus + +#endif // __XGLINTELEXT_H__ |
