NPatchLayout


Vocabulary
raylib

Variable description
Raylib features support for "n-patch" tiles. N-patches allow for texture to be automatically repeated and stretched. Raylib has support for the follow n-patch styles:
3x3 (NPATCH_NINE_PATCH)
1x3 (NPATCH_THREE_PATCH_VERTICAL)
3x1 (NPATCH_THREE_PATCH_HORIZONTAL)


See the following page for an example:

https://www.raylib.com/examples/textures/loader.html?name=textures_npatch_drawing

Enum members
NPATCH_NINE_PATCH

NPATCH_THREE_PATCH_VERTICAL

NPATCH_THREE_PATCH_HORIZONTAL


Definition