* Add optional 3d panorama background

This commit is contained in:
iProgramInCpp
2023-08-11 00:13:06 +03:00
parent 27a0057886
commit d1de430d14
11 changed files with 172 additions and 7 deletions

View File

@@ -42,6 +42,18 @@ public:
void addDynamicTexture(DynamicTexture* pTexture);
Texture* getTemporaryTextureData(GLuint id);
// set smoothing for next texture to be loaded
void setSmoothing(bool b)
{
field_39 = b;
}
// set smoothing for next texture to be loaded
void setClampToEdge(bool b)
{
field_38 = b;
}
Textures(Options*, AppPlatform*);
~Textures();