aboutsummaryrefslogtreecommitdiffstats
path: root/make/stub_includes/egl
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-11-04 20:06:43 +0100
committerSven Gothel <[email protected]>2010-11-04 20:06:43 +0100
commit46f17013c7cd59d551371edb2c1a4a57f8cbd84f (patch)
tree99acda871fde22bd545592bf516d259dccf5c540 /make/stub_includes/egl
parentbf83013bf8d29d9d54547f109c47517b9131a858 (diff)
Remove NVidia licensed KD and OMX files.
In case we still need these extensions, add them manually.
Diffstat (limited to 'make/stub_includes/egl')
-rw-r--r--make/stub_includes/egl/KD/NV_extwindowprops.h32
-rw-r--r--make/stub_includes/egl/KD/NV_multitouch.h70
2 files changed, 0 insertions, 102 deletions
diff --git a/make/stub_includes/egl/KD/NV_extwindowprops.h b/make/stub_includes/egl/KD/NV_extwindowprops.h
deleted file mode 100644
index e7a16c727..000000000
--- a/make/stub_includes/egl/KD/NV_extwindowprops.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (c) 2007 NVIDIA Corporation. All rights reserved.
- *
- * NVIDIA Corporation and its licensors retain all intellectual property
- * and proprietary rights in and to this software, related documentation
- * and any modifications thereto. Any use, reproduction, disclosure or
- * distribution of this software and related documentation without an express
- * license agreement from NVIDIA Corporation is strictly prohibited.
- */
-
-
-#ifndef __kd_NV_extwindowprops_h_
-#define __kd_NV_extwindowprops_h_
-#include <KD/kd.h>
-#include <EGL/eglext.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-
-/* KD_WINDOWPROPERTY_FULLSCREEN: Control over resizing a window to fill the complete screen */
-
-#define KD_WINDOWPROPERTY_FULLSCREEN_NV 9999
-
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __kd_NV_extwindowprops_h_ */
diff --git a/make/stub_includes/egl/KD/NV_multitouch.h b/make/stub_includes/egl/KD/NV_multitouch.h
deleted file mode 100644
index 5a9b9243b..000000000
--- a/make/stub_includes/egl/KD/NV_multitouch.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Copyright (c) 2007 NVIDIA Corporation. All rights reserved.
- *
- * NVIDIA Corporation and its licensors retain all intellectual property
- * and proprietary rights in and to this software, related documentation
- * and any modifications thereto. Any use, reproduction, disclosure or
- * distribution of this software and related documentation without an express
- * license agreement from NVIDIA Corporation is strictly prohibited.
- */
-
-
-#ifndef __kd_NV_multitouch_h_
-#define __kd_NV_multitouch_h_
-#include <KD/kd.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-
-/* KD_IOGROUP_MULTITOUCH: I/O group for Multitouch input devices. */
-#define KD_IOGROUP_MULTITOUCH_NV 0x40004000
-#define KD_STATE_MULTITOUCH_AVAILABILITY_NV (KD_IOGROUP_MULTITOUCH_NV + 0)
-#define KD_INPUT_MULTITOUCH_FINGERS_NV (KD_IOGROUP_MULTITOUCH_NV + 1)
-#define KD_INPUT_MULTITOUCH_WIDTH_NV (KD_IOGROUP_MULTITOUCH_NV + 2)
-#define KD_INPUT_MULTITOUCH_X_NV (KD_IOGROUP_MULTITOUCH_NV + 3)
-#define KD_INPUT_MULTITOUCH_Y_NV (KD_IOGROUP_MULTITOUCH_NV + 4)
-#define KD_INPUT_MULTITOUCH_X2_NV (KD_IOGROUP_MULTITOUCH_NV + 5)
-#define KD_INPUT_MULTITOUCH_Y2_NV (KD_IOGROUP_MULTITOUCH_NV + 6)
-#define KD_INPUT_MULTITOUCH_PRESSURE_NV (KD_IOGROUP_MULTITOUCH_NV + 7)
-#define KD_INPUT_MULTITOUCH_GESTURES_NV (KD_IOGROUP_MULTITOUCH_NV + 8)
-#define KD_INPUT_MULTITOUCH_RELX_NV (KD_IOGROUP_MULTITOUCH_NV + 9)
-#define KD_INPUT_MULTITOUCH_RELY_NV (KD_IOGROUP_MULTITOUCH_NV + 10)
-
-
-
-/* KD_EVENT_INPUT_MULTITOUCH_NV: Multitouch event. */
-#define KD_EVENT_INPUT_MULTITOUCH_NV 1001
-typedef struct KDEventInputMultitouchDataNV {
- KDint32 index;
- KDint8 fingers;
- KDint8 width;
- KDint16 x;
- KDint16 y;
- KDint16 x2;
- KDint16 y2;
- KDint16 pressure;
-} KDEventInputMultitouchDataNV;
-
-
-/* KD_EVENT_INPUT_MULTITOUCH_GESTURE_NV: Multitouch gesture event. */
-#define KD_EVENT_INPUT_MULTITOUCH_GESTURE_NV 1002
-
-
-/* kdGetEventInputMultitouchDataNV: Get auxiliary event data for multitouch input. */
-KD_API KDint KD_APIENTRY kdGetEventInputMultitouchDataNV(const KDEvent * event, KDEventInputMultitouchDataNV * data);
-
-/* kdSetEventInputMultitouchActiveNV: Activate Multitouch input events */
-KD_API KDint KD_APIENTRY kdSetEventInputMultitouchActiveNV(KDboolean activate);
-
-/* kdEnableEventInputMultitouchMergeNV: Activate merging of Multitouch input events */
-KD_API void KD_APIENTRY kdEnableEventInputMultitouchMergeNV(KDboolean enable);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __kd_NV_multitouch_h_ */
-