com.github.moaxcp.x11client.protocol.dri2.Attachment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-client Show documentation
Show all versions of x11-client Show documentation
An x11 client implemented in java
package com.github.moaxcp.x11client.protocol.dri2;
import com.github.moaxcp.x11client.protocol.IntValue;
import java.lang.Integer;
import java.lang.Override;
import java.util.HashMap;
import java.util.Map;
public enum Attachment implements IntValue {
BUFFER_FRONT_LEFT(0),
BUFFER_BACK_LEFT(1),
BUFFER_FRONT_RIGHT(2),
BUFFER_BACK_RIGHT(3),
BUFFER_DEPTH(4),
BUFFER_STENCIL(5),
BUFFER_ACCUM(6),
BUFFER_FAKE_FRONT_LEFT(7),
BUFFER_FAKE_FRONT_RIGHT(8),
BUFFER_DEPTH_STENCIL(9),
BUFFER_HIZ(10);
static final Map byCode = new HashMap<>();
static {
for(Attachment e : values()) {
byCode.put(e.value, e);
}
}
private int value;
Attachment(int value) {
this.value = value;
}
@Override
public int getValue() {
return value;
}
public static Attachment getByCode(int code) {
return byCode.get(code);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy