1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-01-24 17:26:41 +00:00

remove tiny unused things

This commit is contained in:
fgenesis 2023-08-25 01:36:06 +02:00
parent 6afe0257da
commit 3c48349e94
3 changed files with 0 additions and 7 deletions

View file

@ -1229,11 +1229,6 @@ void Core::setupRenderPositionAndScale()
glTranslatef(-(cameraPos.x+cameraOffset.x), -(cameraPos.y+cameraOffset.y), -(cameraPos.z+cameraOffset.z));
}
void Core::setupGlobalResolutionScale()
{
glScalef(globalResolutionScale.x, globalResolutionScale.y, globalResolutionScale.z);
}
void Core::setMouseConstraint(bool on)
{

View file

@ -352,7 +352,6 @@ public:
DarkLayer darkLayer;
void setupRenderPositionAndScale();
void setupGlobalResolutionScale();
int particlesPaused;

View file

@ -96,7 +96,6 @@ void Texture::unload()
}
}
static const GLenum repeatLUT[] = { GL_CLAMP_TO_EDGE, GL_REPEAT };
void Texture::apply() const
{
glBindTexture(GL_TEXTURE_2D, gltexid);