com.github.moaxcp.x11.protocol.xv.Format Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-protocol-xv Show documentation
Show all versions of x11-protocol-xv Show documentation
An implementation of the x11 xv protocol in java
package com.github.moaxcp.x11.protocol.xv;
import com.github.moaxcp.x11.protocol.X11Input;
import com.github.moaxcp.x11.protocol.X11Output;
import com.github.moaxcp.x11.protocol.XStruct;
import java.io.IOException;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class Format implements XStruct {
public static final String PLUGIN_NAME = "xv";
private int visual;
private byte depth;
public static Format readFormat(X11Input in) throws IOException {
Format.FormatBuilder javaBuilder = Format.builder();
int visual = in.readCard32();
byte depth = in.readCard8();
byte[] pad2 = in.readPad(3);
javaBuilder.visual(visual);
javaBuilder.depth(depth);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard32(visual);
out.writeCard8(depth);
out.writePad(3);
}
@Override
public int getSize() {
return 8;
}
public String getPluginName() {
return PLUGIN_NAME;
}
public static class FormatBuilder {
public int getSize() {
return 8;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy