2016-01-04 06:41:10 +01:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
2021-12-26 18:47:58 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2016-01-04 06:41:10 +01:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 18:47:58 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-01-04 06:41:10 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-02-28 18:15:00 +01:00
|
|
|
#include "backends/graphics/opengl/pipelines/fixed.h"
|
2022-06-29 21:08:20 +01:00
|
|
|
#include "graphics/opengl/debug.h"
|
2016-01-04 06:41:10 +01:00
|
|
|
|
|
|
|
namespace OpenGL {
|
|
|
|
|
|
|
|
#if !USE_FORCED_GLES2
|
2016-02-28 23:58:04 +01:00
|
|
|
void FixedPipeline::activateInternal() {
|
2016-01-04 06:41:10 +01:00
|
|
|
GL_CALL(glDisable(GL_LIGHTING));
|
|
|
|
GL_CALL(glDisable(GL_FOG));
|
|
|
|
GL_CALL(glShadeModel(GL_FLAT));
|
|
|
|
GL_CALL(glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_FASTEST));
|
|
|
|
|
|
|
|
GL_CALL(glEnableClientState(GL_VERTEX_ARRAY));
|
|
|
|
GL_CALL(glEnableClientState(GL_TEXTURE_COORD_ARRAY));
|
|
|
|
|
|
|
|
#if !USE_FORCED_GLES
|
2022-04-25 15:36:50 +02:00
|
|
|
if (OpenGLContext.multitextureSupported) {
|
2016-01-04 06:41:10 +01:00
|
|
|
GL_CALL(glActiveTexture(GL_TEXTURE0));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
GL_CALL(glEnable(GL_TEXTURE_2D));
|
|
|
|
}
|
|
|
|
|
|
|
|
void FixedPipeline::setColor(GLfloat r, GLfloat g, GLfloat b, GLfloat a) {
|
|
|
|
GL_CALL(glColor4f(r, g, b, a));
|
|
|
|
}
|
|
|
|
|
2021-12-25 23:25:32 +01:00
|
|
|
void FixedPipeline::drawTexture(const GLTexture &texture, const GLfloat *coordinates, const GLfloat *texcoords) {
|
2016-01-06 16:52:03 +01:00
|
|
|
texture.bind();
|
|
|
|
|
2021-12-25 23:25:32 +01:00
|
|
|
GL_CALL(glTexCoordPointer(2, GL_FLOAT, 0, texcoords));
|
2016-01-06 16:52:03 +01:00
|
|
|
GL_CALL(glVertexPointer(2, GL_FLOAT, 0, coordinates));
|
|
|
|
GL_CALL(glDrawArrays(GL_TRIANGLE_STRIP, 0, 4));
|
2016-01-04 06:41:10 +01:00
|
|
|
}
|
2016-01-04 11:38:21 +01:00
|
|
|
|
|
|
|
void FixedPipeline::setProjectionMatrix(const GLfloat *projectionMatrix) {
|
2016-02-28 23:58:04 +01:00
|
|
|
if (!isActive()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-04 11:38:21 +01:00
|
|
|
GL_CALL(glMatrixMode(GL_PROJECTION));
|
|
|
|
GL_CALL(glLoadMatrixf(projectionMatrix));
|
|
|
|
|
|
|
|
GL_CALL(glMatrixMode(GL_MODELVIEW));
|
|
|
|
GL_CALL(glLoadIdentity());
|
|
|
|
}
|
2016-01-04 06:41:10 +01:00
|
|
|
#endif // !USE_FORCED_GLES2
|
|
|
|
|
|
|
|
} // End of namespace OpenGL
|