mirror of
https://github.com/love2d/love.git
synced 2026-08-16 00:02:12 +02:00
Minor optimizations to love.graphics.draw(texture).
--HG-- branch : minor
This commit is contained in:
+6
-5
@@ -58,16 +58,17 @@ public:
|
||||
**/
|
||||
Matrix4(const float elements[16]);
|
||||
|
||||
/**
|
||||
* Creates a new matrix from the result of multiplying the two specified
|
||||
* matrices.
|
||||
**/
|
||||
Matrix4(const Matrix4 &a, const Matrix4 &b);
|
||||
|
||||
/**
|
||||
* Creates a new matrix set to a transformation.
|
||||
**/
|
||||
Matrix4(float x, float y, float angle, float sx, float sy, float ox, float oy, float kx, float ky);
|
||||
|
||||
/**
|
||||
* Destructor.
|
||||
**/
|
||||
~Matrix4();
|
||||
|
||||
/**
|
||||
* Multiplies this Matrix with another Matrix, changing neither.
|
||||
* @param m The Matrix to multiply with this Matrix.
|
||||
|
||||
Reference in New Issue
Block a user