public class RenderProfile extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__ao_error
Field descriptor (offset) for struct member 'ao_error'.
|
static long[] |
__DNA__FIELD__name
Field descriptor (offset) for struct member 'name'.
|
static long[] |
__DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.
|
static long[] |
__DNA__FIELD__pad1
Field descriptor (offset) for struct member 'pad1'.
|
static long[] |
__DNA__FIELD__pad2
Field descriptor (offset) for struct member 'pad2'.
|
static long[] |
__DNA__FIELD__particle_perc
Field descriptor (offset) for struct member 'particle_perc'.
|
static long[] |
__DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.
|
static long[] |
__DNA__FIELD__shadbufsample_max
Field descriptor (offset) for struct member 'shadbufsample_max'.
|
static long[] |
__DNA__FIELD__subsurf_max
Field descriptor (offset) for struct member 'subsurf_max'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct RenderProfile.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
RenderProfile(long __address,
Block __block,
BlockTable __blockTable) |
protected |
RenderProfile(RenderProfile that) |
Modifier and Type | Method and Description |
---|---|
CPointer<RenderProfile> |
__io__addressof()
Instantiates a pointer on this instance.
|
float |
getAo_error()
Get method for struct member 'ao_error'.
|
CArrayFacade<java.lang.Byte> |
getName()
Get method for struct member 'name'.
|
CPointer<RenderProfile> |
getNext()
Get method for struct member 'next'.
|
short |
getPad1()
Get method for struct member 'pad1'.
|
float |
getPad2()
Get method for struct member 'pad2'.
|
short |
getParticle_perc()
Get method for struct member 'particle_perc'.
|
CPointer<RenderProfile> |
getPrev()
Get method for struct member 'prev'.
|
short |
getShadbufsample_max()
Get method for struct member 'shadbufsample_max'.
|
short |
getSubsurf_max()
Get method for struct member 'subsurf_max'.
|
void |
setAo_error(float ao_error)
Set method for struct member 'ao_error'.
|
void |
setName(CArrayFacade<java.lang.Byte> name)
Set method for struct member 'name'.
|
void |
setNext(CPointer<RenderProfile> next)
Set method for struct member 'next'.
|
void |
setPad1(short pad1)
Set method for struct member 'pad1'.
|
void |
setPad2(float pad2)
Set method for struct member 'pad2'.
|
void |
setParticle_perc(short particle_perc)
Set method for struct member 'particle_perc'.
|
void |
setPrev(CPointer<RenderProfile> prev)
Set method for struct member 'prev'.
|
void |
setShadbufsample_max(short shadbufsample_max)
Set method for struct member 'shadbufsample_max'.
|
void |
setSubsurf_max(short subsurf_max)
Set method for struct member 'subsurf_max'.
|
__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 RenderProfile.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__next
This is how you get a reference on the corresponding field in the struct:
RenderProfile renderprofile = ...; CPointer<Object> p = renderprofile.__dna__addressof(RenderProfile.__DNA__FIELD__next); CPointer<CPointer<RenderProfile>> p_next = p.cast(new Class[]{CPointer.class, RenderProfile.class});
public static final long[] __DNA__FIELD__prev
This is how you get a reference on the corresponding field in the struct:
RenderProfile renderprofile = ...; CPointer<Object> p = renderprofile.__dna__addressof(RenderProfile.__DNA__FIELD__prev); CPointer<CPointer<RenderProfile>> p_prev = p.cast(new Class[]{CPointer.class, RenderProfile.class});
public static final long[] __DNA__FIELD__name
This is how you get a reference on the corresponding field in the struct:
RenderProfile renderprofile = ...; CPointer<Object> p = renderprofile.__dna__addressof(RenderProfile.__DNA__FIELD__name); CPointer<CArrayFacade<Byte>> p_name = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__particle_perc
This is how you get a reference on the corresponding field in the struct:
RenderProfile renderprofile = ...; CPointer<Object> p = renderprofile.__dna__addressof(RenderProfile.__DNA__FIELD__particle_perc); CPointer<Short> p_particle_perc = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__subsurf_max
This is how you get a reference on the corresponding field in the struct:
RenderProfile renderprofile = ...; CPointer<Object> p = renderprofile.__dna__addressof(RenderProfile.__DNA__FIELD__subsurf_max); CPointer<Short> p_subsurf_max = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__shadbufsample_max
This is how you get a reference on the corresponding field in the struct:
RenderProfile renderprofile = ...; CPointer<Object> p = renderprofile.__dna__addressof(RenderProfile.__DNA__FIELD__shadbufsample_max); CPointer<Short> p_shadbufsample_max = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__pad1
This is how you get a reference on the corresponding field in the struct:
RenderProfile renderprofile = ...; CPointer<Object> p = renderprofile.__dna__addressof(RenderProfile.__DNA__FIELD__pad1); CPointer<Short> p_pad1 = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__ao_error
This is how you get a reference on the corresponding field in the struct:
RenderProfile renderprofile = ...; CPointer<Object> p = renderprofile.__dna__addressof(RenderProfile.__DNA__FIELD__ao_error); CPointer<Float> p_ao_error = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__pad2
This is how you get a reference on the corresponding field in the struct:
RenderProfile renderprofile = ...; CPointer<Object> p = renderprofile.__dna__addressof(RenderProfile.__DNA__FIELD__pad2); CPointer<Float> p_pad2 = p.cast(new Class[]{Float.class});
public RenderProfile(long __address, Block __block, BlockTable __blockTable)
protected RenderProfile(RenderProfile that)
public CPointer<RenderProfile> getNext() throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public void setNext(CPointer<RenderProfile> next) throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public CPointer<RenderProfile> getPrev() throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public void setPrev(CPointer<RenderProfile> prev) throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public CArrayFacade<java.lang.Byte> getName() throws java.io.IOException
java.io.IOException
__DNA__FIELD__name
public void setName(CArrayFacade<java.lang.Byte> name) throws java.io.IOException
java.io.IOException
__DNA__FIELD__name
public short getParticle_perc() throws java.io.IOException
java.io.IOException
__DNA__FIELD__particle_perc
public void setParticle_perc(short particle_perc) throws java.io.IOException
java.io.IOException
__DNA__FIELD__particle_perc
public short getSubsurf_max() throws java.io.IOException
java.io.IOException
__DNA__FIELD__subsurf_max
public void setSubsurf_max(short subsurf_max) throws java.io.IOException
java.io.IOException
__DNA__FIELD__subsurf_max
public short getShadbufsample_max() throws java.io.IOException
java.io.IOException
__DNA__FIELD__shadbufsample_max
public void setShadbufsample_max(short shadbufsample_max) throws java.io.IOException
java.io.IOException
__DNA__FIELD__shadbufsample_max
public short getPad1() throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad1
public void setPad1(short pad1) throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad1
public float getAo_error() throws java.io.IOException
java.io.IOException
__DNA__FIELD__ao_error
public void setAo_error(float ao_error) throws java.io.IOException
java.io.IOException
__DNA__FIELD__ao_error
public float getPad2() throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad2
public void setPad2(float pad2) throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad2
public CPointer<RenderProfile> __io__addressof()