aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2014-10-10 16:29:46 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2014-10-31 15:29:16 -0600
commitd8e8d7bd7b578f203d973c593ee6dedc259b68bc (patch)
treed1b4dd23dea28fcfde58a9a8b09c5377050ca78b /include
parent1e5191053d844c86f21cd2b82e4bc09ae0340634 (diff)
downloadusermoji-d8e8d7bd7b578f203d973c593ee6dedc259b68bc.tar.xz
intel: Support GLSL compiling in less intrusive way
Removed all the extension semantics. Support for compiling GLSL in the driver is intended to be a tempory feature and these changes minimize the impact on the driver and make it easier to remove in the future.
Diffstat (limited to 'include')
-rw-r--r--include/xglIntelExt.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/include/xglIntelExt.h b/include/xglIntelExt.h
deleted file mode 100644
index 15c7f526..00000000
--- a/include/xglIntelExt.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* 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;
-
-typedef struct _XGL_INTEL_COMPILE_GLSL
-{
- XGL_PIPELINE_SHADER_STAGE stage;
- const char *pCode;
-} XGL_INTEL_COMPILE_GLSL;
-
-#ifdef __cplusplus
-} // extern "C"
-#endif // __cplusplus
-
-#endif // __XGLINTELEXT_H__