mirror of
https://github.com/love2d/love.git
synced 2026-08-17 19:23:38 +02:00
Missing a not, of course
This commit is contained in:
@@ -46,7 +46,7 @@ namespace opengl
|
|||||||
|
|
||||||
void Quad::refresh(const Viewport & v, int sw, int sh)
|
void Quad::refresh(const Viewport & v, int sw, int sh)
|
||||||
{
|
{
|
||||||
if (GLEE_ARB_texture_non_power_of_two)
|
if (!GLEE_ARB_texture_non_power_of_two)
|
||||||
{
|
{
|
||||||
sw = next_p2(sw);
|
sw = next_p2(sw);
|
||||||
sh = next_p2(sh);
|
sh = next_p2(sh);
|
||||||
|
|||||||
Reference in New Issue
Block a user