You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
869 B
41 lines
869 B
package com.genymobile.scrcpy;
|
|
|
|
public final class DisplayInfo {
|
|
private final int displayId;
|
|
private final Size size;
|
|
private final int rotation;
|
|
private final int layerStack;
|
|
private final int flags;
|
|
|
|
public static final int FLAG_SUPPORTS_PROTECTED_BUFFERS = 0x00000001;
|
|
|
|
public DisplayInfo(int displayId, Size size, int rotation, int layerStack, int flags) {
|
|
this.displayId = displayId;
|
|
this.size = size;
|
|
this.rotation = rotation;
|
|
this.layerStack = layerStack;
|
|
this.flags = flags;
|
|
}
|
|
|
|
public int getDisplayId() {
|
|
return displayId;
|
|
}
|
|
|
|
public Size getSize() {
|
|
return size;
|
|
}
|
|
|
|
public int getRotation() {
|
|
return rotation;
|
|
}
|
|
|
|
public int getLayerStack() {
|
|
return layerStack;
|
|
}
|
|
|
|
public int getFlags() {
|
|
return flags;
|
|
}
|
|
}
|
|
|