OpenTkEngine.Core.Graphics.DrawTexture C# (CSharp) Method

DrawTexture() public static method

public static DrawTexture ( Texture texture, Rectangle dest, float z, Rectangle source, Color4 color ) : void
texture Texture
dest Rectangle
z float
source Rectangle
color Color4
return void
        public static void DrawTexture(Texture texture, Rectangle dest, float z, Rectangle source, Color4 color)
        {
            DrawTexture(texture, dest.X, dest.Y, z, dest.Width, dest.Height, source.X, source.Y, source.Width, source.Height, color);
        }

Same methods

Graphics::DrawTexture ( Texture texture, Vector3 position, System.Vector2 size, System.Vector2 sourcePosition, System.Vector2 sourceDimension, Color4 color ) : void
Graphics::DrawTexture ( Texture texture, float x, float y, float z, Color4 color ) : void
Graphics::DrawTexture ( Texture texture, float x, float y, float z, float width, float height, Color4 color ) : void
Graphics::DrawTexture ( Texture texture, float x, float y, float z, float width, float height, int sx, int sy, int sw, int sh, Color4 color ) : void