Class RenderProfile


  • public class RenderProfile
    extends CFacade
    Generated facet for DNA struct type 'RenderProfile'.

    Class Documentation

    Blender Source Code


    Render Conversion/Simplfication Settings control render convert and shading engine

    • Field Detail

      • __DNA__SDNA_INDEX

        public static final int __DNA__SDNA_INDEX
        This is the sdna index of the struct RenderProfile.

        It is required when allocating a new block to store data for RenderProfile.

        See Also:
        StructDNA, BlockTable, Constant Field Values
      • __DNA__FIELD__next

        public static final long[] __DNA__FIELD__next
        Field descriptor (offset) for struct member 'next'.

        Pointer Arithmetics

        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});
         

        Metadata

        • Field: 'next'
        • Signature: 'RenderProfile*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__prev

        public static final long[] __DNA__FIELD__prev
        Field descriptor (offset) for struct member 'prev'.

        Pointer Arithmetics

        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});
         

        Metadata

        • Field: 'prev'
        • Signature: 'RenderProfile*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__name

        public static final long[] __DNA__FIELD__name
        Field descriptor (offset) for struct member 'name'.

        Pointer Arithmetics

        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});
         

        Metadata

        • Field: 'name'
        • Signature: 'char[32]'
        • Actual Size (32bit/64bit): 32/32
      • __DNA__FIELD__particle_perc

        public static final long[] __DNA__FIELD__particle_perc
        Field descriptor (offset) for struct member 'particle_perc'.

        Pointer Arithmetics

        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});
         

        Metadata

        • Field: 'particle_perc'
        • Signature: 'short'
        • Actual Size (32bit/64bit): 2/2
      • __DNA__FIELD__subsurf_max

        public static final long[] __DNA__FIELD__subsurf_max
        Field descriptor (offset) for struct member 'subsurf_max'.

        Pointer Arithmetics

        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});
         

        Metadata

        • Field: 'subsurf_max'
        • Signature: 'short'
        • Actual Size (32bit/64bit): 2/2
      • __DNA__FIELD__shadbufsample_max

        public static final long[] __DNA__FIELD__shadbufsample_max
        Field descriptor (offset) for struct member 'shadbufsample_max'.

        Pointer Arithmetics

        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});
         

        Metadata

        • Field: 'shadbufsample_max'
        • Signature: 'short'
        • Actual Size (32bit/64bit): 2/2
      • __DNA__FIELD___pad1

        public static final long[] __DNA__FIELD___pad1
        Field descriptor (offset) for struct member '_pad1'.

        Pointer Arithmetics

        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<CArrayFacade<Byte>> p__pad1 = p.cast(new Class[]{CArrayFacade.class, Byte.class});
         

        Metadata

        • Field: '_pad1'
        • Signature: 'char[2]'
        • Actual Size (32bit/64bit): 2/2
      • __DNA__FIELD__ao_error

        public static final long[] __DNA__FIELD__ao_error
        Field descriptor (offset) for struct member 'ao_error'.

        Pointer Arithmetics

        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});
         

        Metadata

        • Field: 'ao_error'
        • Signature: 'float'
        • Actual Size (32bit/64bit): 4/4
      • __DNA__FIELD___pad2

        public static final long[] __DNA__FIELD___pad2
        Field descriptor (offset) for struct member '_pad2'.

        Pointer Arithmetics

        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<CArrayFacade<Byte>> p__pad2 = p.cast(new Class[]{CArrayFacade.class, Byte.class});
         

        Metadata

        • Field: '_pad2'
        • Signature: 'char[4]'
        • Actual Size (32bit/64bit): 4/4
    • Constructor Detail

      • RenderProfile

        public RenderProfile​(long __address,
                             Block __block,
                             BlockTable __blockTable)
    • Method Detail

      • getName

        public CArrayFacade<java.lang.Byte> getName()
                                             throws java.io.IOException
        Get method for struct member 'name'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__name
      • setName

        public void setName​(CArrayFacade<java.lang.Byte> name)
                     throws java.io.IOException
        Set method for struct member 'name'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__name
      • getParticle_perc

        public short getParticle_perc()
                               throws java.io.IOException
        Get method for struct member 'particle_perc'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__particle_perc
      • setParticle_perc

        public void setParticle_perc​(short particle_perc)
                              throws java.io.IOException
        Set method for struct member 'particle_perc'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__particle_perc
      • getSubsurf_max

        public short getSubsurf_max()
                             throws java.io.IOException
        Get method for struct member 'subsurf_max'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__subsurf_max
      • setSubsurf_max

        public void setSubsurf_max​(short subsurf_max)
                            throws java.io.IOException
        Set method for struct member 'subsurf_max'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__subsurf_max
      • getShadbufsample_max

        public short getShadbufsample_max()
                                   throws java.io.IOException
        Get method for struct member 'shadbufsample_max'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__shadbufsample_max
      • setShadbufsample_max

        public void setShadbufsample_max​(short shadbufsample_max)
                                  throws java.io.IOException
        Set method for struct member 'shadbufsample_max'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__shadbufsample_max
      • get_pad1

        public CArrayFacade<java.lang.Byte> get_pad1()
                                              throws java.io.IOException
        Get method for struct member '_pad1'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD___pad1
      • set_pad1

        public void set_pad1​(CArrayFacade<java.lang.Byte> _pad1)
                      throws java.io.IOException
        Set method for struct member '_pad1'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD___pad1
      • getAo_error

        public float getAo_error()
                          throws java.io.IOException
        Get method for struct member 'ao_error'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__ao_error
      • setAo_error

        public void setAo_error​(float ao_error)
                         throws java.io.IOException
        Set method for struct member 'ao_error'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__ao_error
      • get_pad2

        public CArrayFacade<java.lang.Byte> get_pad2()
                                              throws java.io.IOException
        Get method for struct member '_pad2'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD___pad2
      • set_pad2

        public void set_pad2​(CArrayFacade<java.lang.Byte> _pad2)
                      throws java.io.IOException
        Set method for struct member '_pad2'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD___pad2
      • __io__addressof

        public CPointer<RenderProfile> __io__addressof()
        Instantiates a pointer on this instance.