public class ColorManagedViewSettings extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__curve_mapping
Field descriptor (offset) for struct member 'curve_mapping'.
|
static long[] |
__DNA__FIELD__exposure
Field descriptor (offset) for struct member 'exposure'.
|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__gamma
Field descriptor (offset) for struct member 'gamma'.
|
static long[] |
__DNA__FIELD__look
Field descriptor (offset) for struct member 'look'.
|
static long[] |
__DNA__FIELD__pad
Field descriptor (offset) for struct member 'pad'.
|
static long[] |
__DNA__FIELD__pad2
Field descriptor (offset) for struct member 'pad2'.
|
static long[] |
__DNA__FIELD__view_transform
Field descriptor (offset) for struct member 'view_transform'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct ColorManagedViewSettings.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
ColorManagedViewSettings(ColorManagedViewSettings that) |
|
ColorManagedViewSettings(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<ColorManagedViewSettings> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<CurveMapping> |
getCurve_mapping()
Get method for struct member 'curve_mapping'.
|
float |
getExposure()
Get method for struct member 'exposure'.
|
int |
getFlag()
Get method for struct member 'flag'.
|
float |
getGamma()
Get method for struct member 'gamma'.
|
CArrayFacade<java.lang.Byte> |
getLook()
Get method for struct member 'look'.
|
int |
getPad()
Get method for struct member 'pad'.
|
CPointer<java.lang.Object> |
getPad2()
Get method for struct member 'pad2'.
|
CArrayFacade<java.lang.Byte> |
getView_transform()
Get method for struct member 'view_transform'.
|
void |
setCurve_mapping(CPointer<CurveMapping> curve_mapping)
Set method for struct member 'curve_mapping'.
|
void |
setExposure(float exposure)
Set method for struct member 'exposure'.
|
void |
setFlag(int flag)
Set method for struct member 'flag'.
|
void |
setGamma(float gamma)
Set method for struct member 'gamma'.
|
void |
setLook(CArrayFacade<java.lang.Byte> look)
Set method for struct member 'look'.
|
void |
setPad(int pad)
Set method for struct member 'pad'.
|
void |
setPad2(CPointer<java.lang.Object> pad2)
Set method for struct member 'pad2'.
|
void |
setView_transform(CArrayFacade<java.lang.Byte> view_transform)
Set method for struct member 'view_transform'.
|
__io__addressof, __io__addressof, __io__equals, __io__generic__copy, __io__generic__copy, __io__instanceof, __io__native__copy, __io__newInstance, __io__same__encoding, __io__sizeof, __io__sizeof, __io__subclassof
public static final int __DNA__SDNA_INDEX
It is required when allocating a new block to store data for ColorManagedViewSettings.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__flag
This is how you get a reference on the corresponding field in the struct:
ColorManagedViewSettings colormanagedviewsettings = ...; CPointer<Object> p = colormanagedviewsettings.__dna__addressof(ColorManagedViewSettings.__DNA__FIELD__flag); CPointer<Integer> p_flag = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__pad
This is how you get a reference on the corresponding field in the struct:
ColorManagedViewSettings colormanagedviewsettings = ...; CPointer<Object> p = colormanagedviewsettings.__dna__addressof(ColorManagedViewSettings.__DNA__FIELD__pad); CPointer<Integer> p_pad = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__look
look which is being applied when displaying buffer on the screen (prior to view transform)
This is how you get a reference on the corresponding field in the struct:
ColorManagedViewSettings colormanagedviewsettings = ...; CPointer<Object> p = colormanagedviewsettings.__dna__addressof(ColorManagedViewSettings.__DNA__FIELD__look); CPointer<CArrayFacade<Byte>> p_look = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__view_transform
view transform which is being applied when displaying buffer on the screen
This is how you get a reference on the corresponding field in the struct:
ColorManagedViewSettings colormanagedviewsettings = ...; CPointer<Object> p = colormanagedviewsettings.__dna__addressof(ColorManagedViewSettings.__DNA__FIELD__view_transform); CPointer<CArrayFacade<Byte>> p_view_transform = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__exposure
fstop exposure
This is how you get a reference on the corresponding field in the struct:
ColorManagedViewSettings colormanagedviewsettings = ...; CPointer<Object> p = colormanagedviewsettings.__dna__addressof(ColorManagedViewSettings.__DNA__FIELD__exposure); CPointer<Float> p_exposure = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__gamma
post-display gamma transform
This is how you get a reference on the corresponding field in the struct:
ColorManagedViewSettings colormanagedviewsettings = ...; CPointer<Object> p = colormanagedviewsettings.__dna__addressof(ColorManagedViewSettings.__DNA__FIELD__gamma); CPointer<Float> p_gamma = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__curve_mapping
pre-display RGB curves transform
This is how you get a reference on the corresponding field in the struct:
ColorManagedViewSettings colormanagedviewsettings = ...; CPointer<Object> p = colormanagedviewsettings.__dna__addressof(ColorManagedViewSettings.__DNA__FIELD__curve_mapping); CPointer<CPointer<CurveMapping>> p_curve_mapping = p.cast(new Class[]{CPointer.class, CurveMapping.class});
public static final long[] __DNA__FIELD__pad2
This is how you get a reference on the corresponding field in the struct:
ColorManagedViewSettings colormanagedviewsettings = ...; CPointer<Object> p = colormanagedviewsettings.__dna__addressof(ColorManagedViewSettings.__DNA__FIELD__pad2); CPointer<CPointer<Object>> p_pad2 = p.cast(new Class[]{CPointer.class, Object.class});
public ColorManagedViewSettings(long __address, Block __block, BlockTable __blockTable)
protected ColorManagedViewSettings(ColorManagedViewSettings that)
public int getFlag() throws java.io.IOException
java.io.IOException
__DNA__FIELD__flag
public void setFlag(int flag) throws java.io.IOException
java.io.IOException
__DNA__FIELD__flag
public int getPad() throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad
public void setPad(int pad) throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad
public CArrayFacade<java.lang.Byte> getLook() throws java.io.IOException
look which is being applied when displaying buffer on the screen (prior to view transform)
java.io.IOException
__DNA__FIELD__look
public void setLook(CArrayFacade<java.lang.Byte> look) throws java.io.IOException
look which is being applied when displaying buffer on the screen (prior to view transform)
java.io.IOException
__DNA__FIELD__look
public CArrayFacade<java.lang.Byte> getView_transform() throws java.io.IOException
view transform which is being applied when displaying buffer on the screen
java.io.IOException
__DNA__FIELD__view_transform
public void setView_transform(CArrayFacade<java.lang.Byte> view_transform) throws java.io.IOException
view transform which is being applied when displaying buffer on the screen
java.io.IOException
__DNA__FIELD__view_transform
public float getExposure() throws java.io.IOException
fstop exposure
java.io.IOException
__DNA__FIELD__exposure
public void setExposure(float exposure) throws java.io.IOException
fstop exposure
java.io.IOException
__DNA__FIELD__exposure
public float getGamma() throws java.io.IOException
post-display gamma transform
java.io.IOException
__DNA__FIELD__gamma
public void setGamma(float gamma) throws java.io.IOException
post-display gamma transform
java.io.IOException
__DNA__FIELD__gamma
public CPointer<CurveMapping> getCurve_mapping() throws java.io.IOException
pre-display RGB curves transform
java.io.IOException
__DNA__FIELD__curve_mapping
public void setCurve_mapping(CPointer<CurveMapping> curve_mapping) throws java.io.IOException
pre-display RGB curves transform
java.io.IOException
__DNA__FIELD__curve_mapping
public CPointer<java.lang.Object> getPad2() throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad2
public void setPad2(CPointer<java.lang.Object> pad2) throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad2
public CPointer<ColorManagedViewSettings> __io__addressof()