WARNING: BREAKING: REDESIGNED: rlgl module

- Many functions renamed to follow rl*() convention
- Some internal functions exposed in the API
- Some functionality moved to other modules
- Reorganized all functions by categories
- Make sure it keeps working with OpenGL 1.1 and 2.1
This commit is contained in:
Ray 2021-03-22 20:45:04 +01:00
parent 24dae29a03
commit 2ce28f75ad
4 changed files with 997 additions and 979 deletions

View file

@ -2950,6 +2950,12 @@ Image GetScreenData(void)
return image;
}
// Define default texture used to draw shapes
void SetShapesTexture(Texture2D texture, Rectangle source)
{
rlSetShapesTexture(texture, source);
}
//------------------------------------------------------------------------------------
// Texture configuration functions
//------------------------------------------------------------------------------------