| 1321 | } |
| 1322 | |
| 1323 | void CGraphics_Threaded::DrawRect4(float x, float y, float w, float h, ColorRGBA ColorTopLeft, ColorRGBA ColorTopRight, ColorRGBA ColorBottomLeft, ColorRGBA ColorBottomRight, int Corners, float Rounding) |
| 1324 | { |
| 1325 | TextureClear(); |
| 1326 | QuadsBegin(); |
| 1327 | DrawRectExt4(x, y, w, h, ColorTopLeft, ColorTopRight, ColorBottomLeft, ColorBottomRight, Rounding, Corners); |
| 1328 | QuadsEnd(); |
| 1329 | } |
| 1330 | |
| 1331 | void CGraphics_Threaded::DrawCircle(float CenterX, float CenterY, float Radius, int Segments) |
| 1332 | { |