-
Notifications
You must be signed in to change notification settings - Fork 0
/
glfwConsts.cs
299 lines (299 loc) · 13 KB
/
glfwConsts.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
namespace VulkanSharp.Raw {
public unsafe static partial class Glfw {
public const int GlfwApientryDefined = 1;
public const int GlfwWingdiapiDefined = 1;
public const int GlfwCallbackDefined = 1;
public const int GlfwVersionMajor = 3;
public const int GlfwVersionMinor = 3;
public const int GlfwVersionRevision = 1;
public const int GlfwTrue = 1;
public const int GlfwFalse = 0;
public const int GlfwRelease = 0;
public const int GlfwPress = 1;
public const int GlfwRepeat = 2;
public const int GlfwHatCentered = 0;
public const int GlfwHatUp = 1;
public const int GlfwHatRight = 2;
public const int GlfwHatDown = 4;
public const int GlfwHatLeft = 8;
public const uint GlfwHatRightUp = 3;
public const uint GlfwHatRightDown = 6;
public const uint GlfwHatLeftUp = 9;
public const uint GlfwHatLeftDown = 12;
public const int GlfwKeyUnknown = -1;
public const int GlfwKeySpace = 32;
public const int GlfwKeyApostrophe = 39;
public const int GlfwKeyComma = 44;
public const int GlfwKeyMinus = 45;
public const int GlfwKeyPeriod = 46;
public const int GlfwKeySlash = 47;
public const int GlfwKey0 = 48;
public const int GlfwKey1 = 49;
public const int GlfwKey2 = 50;
public const int GlfwKey3 = 51;
public const int GlfwKey4 = 52;
public const int GlfwKey5 = 53;
public const int GlfwKey6 = 54;
public const int GlfwKey7 = 55;
public const int GlfwKey8 = 56;
public const int GlfwKey9 = 57;
public const int GlfwKeySemicolon = 59;
public const int GlfwKeyEqual = 61;
public const int GlfwKeyA = 65;
public const int GlfwKeyB = 66;
public const int GlfwKeyC = 67;
public const int GlfwKeyD = 68;
public const int GlfwKeyE = 69;
public const int GlfwKeyF = 70;
public const int GlfwKeyG = 71;
public const int GlfwKeyH = 72;
public const int GlfwKeyI = 73;
public const int GlfwKeyJ = 74;
public const int GlfwKeyK = 75;
public const int GlfwKeyL = 76;
public const int GlfwKeyM = 77;
public const int GlfwKeyN = 78;
public const int GlfwKeyO = 79;
public const int GlfwKeyP = 80;
public const int GlfwKeyQ = 81;
public const int GlfwKeyR = 82;
public const int GlfwKeyS = 83;
public const int GlfwKeyT = 84;
public const int GlfwKeyU = 85;
public const int GlfwKeyV = 86;
public const int GlfwKeyW = 87;
public const int GlfwKeyX = 88;
public const int GlfwKeyY = 89;
public const int GlfwKeyZ = 90;
public const int GlfwKeyLeftBracket = 91;
public const int GlfwKeyBackslash = 92;
public const int GlfwKeyRightBracket = 93;
public const int GlfwKeyGraveAccent = 96;
public const int GlfwKeyWorld1 = 161;
public const int GlfwKeyWorld2 = 162;
public const int GlfwKeyEscape = 256;
public const int GlfwKeyEnter = 257;
public const int GlfwKeyTab = 258;
public const int GlfwKeyBackspace = 259;
public const int GlfwKeyInsert = 260;
public const int GlfwKeyDelete = 261;
public const int GlfwKeyRight = 262;
public const int GlfwKeyLeft = 263;
public const int GlfwKeyDown = 264;
public const int GlfwKeyUp = 265;
public const int GlfwKeyPageUp = 266;
public const int GlfwKeyPageDown = 267;
public const int GlfwKeyHome = 268;
public const int GlfwKeyEnd = 269;
public const int GlfwKeyCapsLock = 280;
public const int GlfwKeyScrollLock = 281;
public const int GlfwKeyNumLock = 282;
public const int GlfwKeyPrintScreen = 283;
public const int GlfwKeyPause = 284;
public const int GlfwKeyF1 = 290;
public const int GlfwKeyF2 = 291;
public const int GlfwKeyF3 = 292;
public const int GlfwKeyF4 = 293;
public const int GlfwKeyF5 = 294;
public const int GlfwKeyF6 = 295;
public const int GlfwKeyF7 = 296;
public const int GlfwKeyF8 = 297;
public const int GlfwKeyF9 = 298;
public const int GlfwKeyF10 = 299;
public const int GlfwKeyF11 = 300;
public const int GlfwKeyF12 = 301;
public const int GlfwKeyF13 = 302;
public const int GlfwKeyF14 = 303;
public const int GlfwKeyF15 = 304;
public const int GlfwKeyF16 = 305;
public const int GlfwKeyF17 = 306;
public const int GlfwKeyF18 = 307;
public const int GlfwKeyF19 = 308;
public const int GlfwKeyF20 = 309;
public const int GlfwKeyF21 = 310;
public const int GlfwKeyF22 = 311;
public const int GlfwKeyF23 = 312;
public const int GlfwKeyF24 = 313;
public const int GlfwKeyF25 = 314;
public const int GlfwKeyKp0 = 320;
public const int GlfwKeyKp1 = 321;
public const int GlfwKeyKp2 = 322;
public const int GlfwKeyKp3 = 323;
public const int GlfwKeyKp4 = 324;
public const int GlfwKeyKp5 = 325;
public const int GlfwKeyKp6 = 326;
public const int GlfwKeyKp7 = 327;
public const int GlfwKeyKp8 = 328;
public const int GlfwKeyKp9 = 329;
public const int GlfwKeyKpDecimal = 330;
public const int GlfwKeyKpDivide = 331;
public const int GlfwKeyKpMultiply = 332;
public const int GlfwKeyKpSubtract = 333;
public const int GlfwKeyKpAdd = 334;
public const int GlfwKeyKpEnter = 335;
public const int GlfwKeyKpEqual = 336;
public const int GlfwKeyLeftShift = 340;
public const int GlfwKeyLeftControl = 341;
public const int GlfwKeyLeftAlt = 342;
public const int GlfwKeyLeftSuper = 343;
public const int GlfwKeyRightShift = 344;
public const int GlfwKeyRightControl = 345;
public const int GlfwKeyRightAlt = 346;
public const int GlfwKeyRightSuper = 347;
public const int GlfwKeyMenu = 348;
public const System.Int32 GlfwKeyLast = GlfwKeyMenu;
public const int GlfwModShift = 0x0001;
public const int GlfwModControl = 0x0002;
public const int GlfwModAlt = 0x0004;
public const int GlfwModSuper = 0x0008;
public const int GlfwModCapsLock = 0x0010;
public const int GlfwModNumLock = 0x0020;
public const int GlfwMouseButton1 = 0;
public const int GlfwMouseButton2 = 1;
public const int GlfwMouseButton3 = 2;
public const int GlfwMouseButton4 = 3;
public const int GlfwMouseButton5 = 4;
public const int GlfwMouseButton6 = 5;
public const int GlfwMouseButton7 = 6;
public const int GlfwMouseButton8 = 7;
public const System.Int32 GlfwMouseButtonLast = GlfwMouseButton8;
public const System.Int32 GlfwMouseButtonLeft = GlfwMouseButton1;
public const System.Int32 GlfwMouseButtonRight = GlfwMouseButton2;
public const System.Int32 GlfwMouseButtonMiddle = GlfwMouseButton3;
public const int GlfwJoystick1 = 0;
public const int GlfwJoystick2 = 1;
public const int GlfwJoystick3 = 2;
public const int GlfwJoystick4 = 3;
public const int GlfwJoystick5 = 4;
public const int GlfwJoystick6 = 5;
public const int GlfwJoystick7 = 6;
public const int GlfwJoystick8 = 7;
public const int GlfwJoystick9 = 8;
public const int GlfwJoystick10 = 9;
public const int GlfwJoystick11 = 10;
public const int GlfwJoystick12 = 11;
public const int GlfwJoystick13 = 12;
public const int GlfwJoystick14 = 13;
public const int GlfwJoystick15 = 14;
public const int GlfwJoystick16 = 15;
public const System.Int32 GlfwJoystickLast = GlfwJoystick16;
public const int GlfwGamepadButtonA = 0;
public const int GlfwGamepadButtonB = 1;
public const int GlfwGamepadButtonX = 2;
public const int GlfwGamepadButtonY = 3;
public const int GlfwGamepadButtonLeftBumper = 4;
public const int GlfwGamepadButtonRightBumper = 5;
public const int GlfwGamepadButtonBack = 6;
public const int GlfwGamepadButtonStart = 7;
public const int GlfwGamepadButtonGuide = 8;
public const int GlfwGamepadButtonLeftThumb = 9;
public const int GlfwGamepadButtonRightThumb = 10;
public const int GlfwGamepadButtonDpadUp = 11;
public const int GlfwGamepadButtonDpadRight = 12;
public const int GlfwGamepadButtonDpadDown = 13;
public const int GlfwGamepadButtonDpadLeft = 14;
public const System.Int32 GlfwGamepadButtonLast = GlfwGamepadButtonDpadLeft;
public const System.Int32 GlfwGamepadButtonCross = GlfwGamepadButtonA;
public const System.Int32 GlfwGamepadButtonCircle = GlfwGamepadButtonB;
public const System.Int32 GlfwGamepadButtonSquare = GlfwGamepadButtonX;
public const System.Int32 GlfwGamepadButtonTriangle = GlfwGamepadButtonY;
public const int GlfwGamepadAxisLeftX = 0;
public const int GlfwGamepadAxisLeftY = 1;
public const int GlfwGamepadAxisRightX = 2;
public const int GlfwGamepadAxisRightY = 3;
public const int GlfwGamepadAxisLeftTrigger = 4;
public const int GlfwGamepadAxisRightTrigger = 5;
public const System.Int32 GlfwGamepadAxisLast = GlfwGamepadAxisRightTrigger;
public const int GlfwNoError = 0;
public const int GlfwNotInitialized = 0x00010001;
public const int GlfwNoCurrentContext = 0x00010002;
public const int GlfwInvalidEnum = 0x00010003;
public const int GlfwInvalidValue = 0x00010004;
public const int GlfwOutOfMemory = 0x00010005;
public const int GlfwApiUnavailable = 0x00010006;
public const int GlfwVersionUnavailable = 0x00010007;
public const int GlfwPlatformError = 0x00010008;
public const int GlfwFormatUnavailable = 0x00010009;
public const int GlfwNoWindowContext = 0x0001000A;
public const int GlfwFocused = 0x00020001;
public const int GlfwIconified = 0x00020002;
public const int GlfwResizable = 0x00020003;
public const int GlfwVisible = 0x00020004;
public const int GlfwDecorated = 0x00020005;
public const int GlfwAutoIconify = 0x00020006;
public const int GlfwFloating = 0x00020007;
public const int GlfwMaximized = 0x00020008;
public const int GlfwCenterCursor = 0x00020009;
public const int GlfwTransparentFramebuffer = 0x0002000A;
public const int GlfwHovered = 0x0002000B;
public const int GlfwFocusOnShow = 0x0002000C;
public const int GlfwRedBits = 0x00021001;
public const int GlfwGreenBits = 0x00021002;
public const int GlfwBlueBits = 0x00021003;
public const int GlfwAlphaBits = 0x00021004;
public const int GlfwDepthBits = 0x00021005;
public const int GlfwStencilBits = 0x00021006;
public const int GlfwAccumRedBits = 0x00021007;
public const int GlfwAccumGreenBits = 0x00021008;
public const int GlfwAccumBlueBits = 0x00021009;
public const int GlfwAccumAlphaBits = 0x0002100A;
public const int GlfwAuxBuffers = 0x0002100B;
public const int GlfwStereo = 0x0002100C;
public const int GlfwSamples = 0x0002100D;
public const int GlfwSrgbCapable = 0x0002100E;
public const int GlfwRefreshRate = 0x0002100F;
public const int GlfwDoublebuffer = 0x00021010;
public const int GlfwClientApi = 0x00022001;
public const int GlfwContextVersionMajor = 0x00022002;
public const int GlfwContextVersionMinor = 0x00022003;
public const int GlfwContextRevision = 0x00022004;
public const int GlfwContextRobustness = 0x00022005;
public const int GlfwOpenglForwardCompat = 0x00022006;
public const int GlfwOpenglDebugContext = 0x00022007;
public const int GlfwOpenglProfile = 0x00022008;
public const int GlfwContextReleaseBehavior = 0x00022009;
public const int GlfwContextNoError = 0x0002200A;
public const int GlfwContextCreationApi = 0x0002200B;
public const int GlfwScaleToMonitor = 0x0002200C;
public const int GlfwCocoaRetinaFramebuffer = 0x00023001;
public const int GlfwCocoaFrameName = 0x00023002;
public const int GlfwCocoaGraphicsSwitching = 0x00023003;
public const int GlfwX11ClassName = 0x00024001;
public const int GlfwX11InstanceName = 0x00024002;
public const int GlfwNoApi = 0;
public const int GlfwOpenglApi = 0x00030001;
public const int GlfwOpenglEsApi = 0x00030002;
public const int GlfwNoRobustness = 0;
public const int GlfwNoResetNotification = 0x00031001;
public const int GlfwLoseContextOnReset = 0x00031002;
public const int GlfwOpenglAnyProfile = 0;
public const int GlfwOpenglCoreProfile = 0x00032001;
public const int GlfwOpenglCompatProfile = 0x00032002;
public const int GlfwCursor = 0x00033001;
public const int GlfwStickyKeys = 0x00033002;
public const int GlfwStickyMouseButtons = 0x00033003;
public const int GlfwLockKeyMods = 0x00033004;
public const int GlfwRawMouseMotion = 0x00033005;
public const int GlfwCursorNormal = 0x00034001;
public const int GlfwCursorHidden = 0x00034002;
public const int GlfwCursorDisabled = 0x00034003;
public const int GlfwAnyReleaseBehavior = 0;
public const int GlfwReleaseBehaviorFlush = 0x00035001;
public const int GlfwReleaseBehaviorNone = 0x00035002;
public const int GlfwNativeContextApi = 0x00036001;
public const int GlfwEglContextApi = 0x00036002;
public const int GlfwOsmesaContextApi = 0x00036003;
public const int GlfwArrowCursor = 0x00036001;
public const int GlfwIbeamCursor = 0x00036002;
public const int GlfwCrosshairCursor = 0x00036003;
public const int GlfwHandCursor = 0x00036004;
public const int GlfwHresizeCursor = 0x00036005;
public const int GlfwVresizeCursor = 0x00036006;
public const int GlfwConnected = 0x00040001;
public const int GlfwDisconnected = 0x00040002;
public const int GlfwJoystickHatButtons = 0x00050001;
public const int GlfwCocoaChdirResources = 0x00051001;
public const int GlfwCocoaMenubar = 0x00051002;
public const int GlfwDontCare = -1;
}
}