mirror of
https://github.com/love2d/love.git
synced 2026-08-17 19:23:38 +02:00
Change love.graphics.setBackgroundColor() to accept alpha values.
--HG-- branch : minor
This commit is contained in:
@@ -525,7 +525,7 @@ namespace opengl
|
|||||||
|
|
||||||
void Graphics::setBackgroundColor(Color c)
|
void Graphics::setBackgroundColor(Color c)
|
||||||
{
|
{
|
||||||
glClearColor((float)c.r/255.0f, (float)c.g/255.0f, (float)c.b/255.0f, 1.0f);
|
glClearColor((float)c.r/255.0f, (float)c.g/255.0f, (float)c.b/255.0f, (float)c.a/255.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
Color Graphics::getBackgroundColor()
|
Color Graphics::getBackgroundColor()
|
||||||
|
|||||||
@@ -386,14 +386,18 @@ namespace opengl
|
|||||||
lua_gettable(L, -2);
|
lua_gettable(L, -2);
|
||||||
c.b = (unsigned char)luaL_checkint(L, -1);
|
c.b = (unsigned char)luaL_checkint(L, -1);
|
||||||
lua_pop(L, 1);
|
lua_pop(L, 1);
|
||||||
|
lua_pushinteger(L, 4);
|
||||||
|
lua_gettable(L, -2);
|
||||||
|
c.a = (unsigned char)luaL_optint(L, -1, 255);
|
||||||
|
lua_pop(L, 1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
c.r = (unsigned char)luaL_checkint(L, 1);
|
c.r = (unsigned char)luaL_checkint(L, 1);
|
||||||
c.g = (unsigned char)luaL_checkint(L, 2);
|
c.g = (unsigned char)luaL_checkint(L, 2);
|
||||||
c.b = (unsigned char)luaL_checkint(L, 3);
|
c.b = (unsigned char)luaL_checkint(L, 3);
|
||||||
|
c.a = (unsigned char)luaL_optint(L, 4, 255);
|
||||||
}
|
}
|
||||||
c.a = 255;
|
|
||||||
instance->setBackgroundColor(c);
|
instance->setBackgroundColor(c);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user