Ejemplo n.º 1
0
 /// <summary>
 /// Insert a command at a position.
 /// </summary>
 public void InsertCommand(uint index, Urho.RenderPathCommand command)
 {
     Runtime.ValidateRefCounted(this);
     RenderPath_InsertCommand(handle, index, ref command);
 }
Ejemplo n.º 2
0
 internal static extern void RenderPath_InsertCommand(IntPtr handle, uint index, ref Urho.RenderPathCommand command);
Ejemplo n.º 3
0
 /// <summary>
 /// Add a command to the end of the list.
 /// </summary>
 public void AddCommand(Urho.RenderPathCommand command)
 {
     Runtime.ValidateRefCounted(this);
     RenderPath_AddCommand(handle, ref command);
 }
Ejemplo n.º 4
0
 internal static extern void RenderPath_AddCommand(IntPtr handle, ref Urho.RenderPathCommand command);
Ejemplo n.º 5
0
Archivo: View.cs Proyecto: yrest/urho
 /// <summary>
 /// Set command's shader parameters if any. Called internally by View.
 /// </summary>
 public void SetCommandShaderParameters(Urho.RenderPathCommand command)
 {
     Runtime.ValidateRefCounted(this);
     View_SetCommandShaderParameters(handle, ref command);
 }
Ejemplo n.º 6
0
Archivo: View.cs Proyecto: yrest/urho
 internal static extern void View_SetCommandShaderParameters(IntPtr handle, ref Urho.RenderPathCommand command);