1
0

Rename some internal/unused draw2DImage function in COpenGLDriver to draw2DImageQuad to avoid warnings.

Also added a bit documentation about what it's purpose seems to be (hope I got it right...).


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6336 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
cutealien
2022-04-15 18:36:56 +00:00
parent c5b349ddb0
commit fc1e2c3b91
3 changed files with 7 additions and 4 deletions

View File

@@ -318,7 +318,7 @@ public:
glClear(GL_COLOR_BUFFER_BIT);
Driver->draw2DImage(this, layer, true);
Driver->draw2DImageQuad(this, layer, true);
IImage* tmpImage = Driver->createImage(ECF_A8R8G8B8, Size);
glReadPixels(0, 0, Size.Width, Size.Height, GL_RGBA, GL_UNSIGNED_BYTE, tmpImage->getData());