Fixed bug #6401 - back-end can choose the order the triangles when rendering rects, attempt to fix small glitch rendering.

This commit is contained in:
Sylvain 2022-10-18 10:34:56 +02:00
parent 285cbf6fdd
commit 3d99d31026
No known key found for this signature in database
GPG key ID: 5F87E02E5BC0939E
3 changed files with 29 additions and 8 deletions

View file

@ -248,6 +248,9 @@ struct SDL_Renderer
/* The method of drawing lines */
SDL_RenderLineMethod line_method;
/* List of triangle indices to draw rects */
int rect_indice_list[6];
/* Remainder from scaled relative motion */
float xrel;
float yrel;