Browse Source

Added security check to avoid internal render batch overflow

raysan5 4 năm trước cách đây
mục cha
commit
a8dd4127f3
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      src/textures.c

+ 2 - 0
src/textures.c

@@ -3236,6 +3236,8 @@ void DrawTexturePro(Texture2D texture, Rectangle source, Rectangle dest, Vector2
             bottomRight.x = x + (dx + dest.width)*cosRotation - (dy + dest.height)*sinRotation;
             bottomRight.y = y + (dx + dest.width)*sinRotation + (dy + dest.height)*cosRotation;
         }
+        
+        rlCheckRenderBatchLimit(4);     // Make sure there is enough free space on the batch buffer
 
         rlSetTexture(texture.id);
         rlBegin(RL_QUADS);