GWEN.CreateTextureNormal
Example
Draws a huge checked checkbox in the top left corner of the screen using current skins texture.
local paintBox = GWEN.CreateTextureNormal( 448, 32, 15, 15 )
hook.Add( "HUDPaint", "PaintStuff", function()
paintBox( 0, 0, 100, 100 )
end )
Output: If using default skin, it will be a 100x100px checked checkbox in top left corner of the screen.