All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.moaxcp.x11client.protocol.xf86dri.QueryDirectRenderingCapableReply Maven / Gradle / Ivy

There is a newer version: 0.18.2
Show newest version
package com.github.moaxcp.x11client.protocol.xf86dri;

import com.github.moaxcp.x11client.protocol.X11Input;
import com.github.moaxcp.x11client.protocol.X11Output;
import com.github.moaxcp.x11client.protocol.XReply;
import java.io.IOException;
import java.lang.Override;
import lombok.Builder;
import lombok.Value;

@Value
@Builder
public class QueryDirectRenderingCapableReply implements XReply {
  private short sequenceNumber;

  private boolean capable;

  public static QueryDirectRenderingCapableReply readQueryDirectRenderingCapableReply(byte pad,
      short sequenceNumber, X11Input in) throws IOException {
    int length = in.readCard32();
    boolean capable = in.readBool();
    in.readPad(23);
    QueryDirectRenderingCapableReply.QueryDirectRenderingCapableReplyBuilder javaBuilder = QueryDirectRenderingCapableReply.builder();
    javaBuilder.sequenceNumber(sequenceNumber);
    javaBuilder.capable(capable);
    in.readPadAlign(javaBuilder.getSize());
    return javaBuilder.build();
  }

  @Override
  public void write(X11Output out) throws IOException {
    out.writeCard8(getResponseCode());
    out.writePad(1);
    out.writeCard16(sequenceNumber);
    out.writeCard32(getLength());
    out.writeBool(capable);
    out.writePadAlign(getSize());
  }

  @Override
  public int getSize() {
    return 9;
  }

  public static class QueryDirectRenderingCapableReplyBuilder {
    public int getSize() {
      return 9;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy