-
Notifications
You must be signed in to change notification settings - Fork 0
/
ComputeDerivativeMode.java
43 lines (37 loc) · 1.21 KB
/
ComputeDerivativeMode.java
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
package com.destranix.glslang;
public enum ComputeDerivativeMode {
LayoutDerivativeNone(Main.LAYOUT_DERIVATIVE_NONE),
LayoutDerivativeGroupQuads(Main.LAYOUT_DERIVATIVE_GROUP_QUADS),
LayoutDerivativeGroupLinear(Main.LAYOUT_DERIVATIVE_GROUP_LINEAR);
private final int value;
private ComputeDerivativeMode(int value) {
this.value = value;
}
public int getConstant() {
return this.value;
}
public static ComputeDerivativeMode valueByStr(String str) {
switch (str) {
case "LayoutDerivativeNone":
return LayoutDerivativeNone;
case "LayoutDerivativeGroupQuads":
return LayoutDerivativeGroupQuads;
case "LayoutDerivativeGroupLinear":
return LayoutDerivativeGroupLinear;
default:
throw new IllegalArgumentException("Cannot translate string into enum value!");
}
}
public static ComputeDerivativeMode valueByConstant(int constant) {
switch (constant) {
case Main.LAYOUT_DERIVATIVE_NONE:
return LayoutDerivativeNone;
case Main.LAYOUT_DERIVATIVE_GROUP_QUADS:
return LayoutDerivativeGroupQuads;
case Main.LAYOUT_DERIVATIVE_GROUP_LINEAR:
return LayoutDerivativeGroupLinear;
default:
throw new IllegalArgumentException("Cannot translate constant into enum value!");
}
}
}