mirror of
https://github.com/love2d/love.git
synced 2026-08-16 00:02:12 +02:00
vulkan: implement vsync setting
This commit is contained in:
@@ -83,16 +83,6 @@ public:
|
||||
**/
|
||||
void operator *= (const Matrix4 &m);
|
||||
|
||||
static friend bool operator==(const Matrix4& first, const Matrix4& other)
|
||||
{
|
||||
for (int i = 0; i < 16; i++) {
|
||||
if (first.e[i] != other.e[i]) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a pointer to the 16 array elements.
|
||||
* @return The array elements.
|
||||
|
||||
Reference in New Issue
Block a user