Class DirectRenderingGLView.RenderCallbackInput

Definition

Namespace:
Tizen.NUI.BaseComponents
Assembly:
Tizen.NUI.dll

The parameter of the RenderFrame Callback. It has data to render directly.

C#
Copy
public class RenderCallbackInput : object
Inheritance
DirectRenderingGLView.RenderCallbackInput

Constructors

View Source

RenderCallbackInput(Matrix, Matrix, Size2D, Rectangle, Int32[])

Declaration
C#
Copy
public RenderCallbackInput(Matrix mvp, Matrix projection, Size2D size, Rectangle clippingBox, int[] textureBindings)
Parameters
Type Name Description
Matrix mvp
Matrix projection
Size2D size
Rectangle clippingBox
Int32[] textureBindings

Properties

View Source

ClippingBox

The area of DirectRenderingGLView. You can use this for glScissor()

Declaration
C#
Copy
public Rectangle ClippingBox { get; }
Property Value
Type Description
Rectangle
View Source

Mvp

MVP matrix

Declaration
C#
Copy
public Matrix Mvp { get; }
Property Value
Type Description
Matrix
View Source

Projection

Projection matrix

Declaration
C#
Copy
public Matrix Projection { get; }
Property Value
Type Description
Matrix
View Source

Size

The size of the DirectRenderingGLView

Declaration
C#
Copy
public Size2D Size { get; }
Property Value
Type Description
Size2D
View Source

TextureBindings

Texture bindings

Declaration
C#
Copy
public ReadOnlyCollection<int> TextureBindings { get; }
Property Value
Type Description
ReadOnlyCollection<Int32>

Extension Methods