commit 18/07/2025

This commit is contained in:
2025-07-18 15:52:50 +07:00
parent bb435fcf0b
commit 6b9cf09c6f
35 changed files with 615 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrPictureProfileBlackGammaRange {
CrPictureProfileBlackGammaRange_Wide (0x01),
CrPictureProfileBlackGammaRange_Middle (CrPictureProfileBlackGammaRange_Wide.getValue()+1),
CrPictureProfileBlackGammaRange_Narrow (CrPictureProfileBlackGammaRange_Wide.getValue()+2);
private final CrInt8u value;
CrPictureProfileBlackGammaRange(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}