blob: 6aa7f7182841000f9dd762b8a4017d17d1eedb38 [file] [log] [blame]
//
// Copyright 2018 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Context_gles_1_0.cpp: Implements the GLES1-specific parts of Context.
#include "libANGLE/Context.h"
#include "common/mathutil.h"
#include "common/utilities.h"
namespace
{
angle::Mat4 FixedMatrixToMat4(const GLfixed *m)
{
angle::Mat4 matrixAsFloat;
GLfloat *floatData = matrixAsFloat.data();
for (int i = 0; i < 16; i++)
{
floatData[i] = gl::FixedToFloat(m[i]);
}
return matrixAsFloat;
}
} // namespace
namespace gl
{
void Context::alphaFunc(AlphaTestFunc func, GLfloat ref)
{
mGLState.gles1().setAlphaFunc(func, ref);
}
void Context::alphaFuncx(AlphaTestFunc func, GLfixed ref)
{
mGLState.gles1().setAlphaFunc(func, FixedToFloat(ref));
}
void Context::clearColorx(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha)
{
UNIMPLEMENTED();
}
void Context::clearDepthx(GLfixed depth)
{
UNIMPLEMENTED();
}
void Context::clientActiveTexture(GLenum texture)
{
mGLState.gles1().setClientTextureUnit(texture - GL_TEXTURE0);
}
void Context::clipPlanef(GLenum p, const GLfloat *eqn)
{
UNIMPLEMENTED();
}
void Context::clipPlanex(GLenum plane, const GLfixed *equation)
{
UNIMPLEMENTED();
}
void Context::color4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
{
mGLState.gles1().setCurrentColor({red, green, blue, alpha});
}
void Context::color4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha)
{
mGLState.gles1().setCurrentColor(
{normalizedToFloat<uint8_t>(red), normalizedToFloat<uint8_t>(green),
normalizedToFloat<uint8_t>(blue), normalizedToFloat<uint8_t>(alpha)});
}
void Context::color4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha)
{
mGLState.gles1().setCurrentColor(
{FixedToFloat(red), FixedToFloat(green), FixedToFloat(blue), FixedToFloat(alpha)});
}
void Context::colorPointer(GLint size, GLenum type, GLsizei stride, const void *ptr)
{
UNIMPLEMENTED();
}
void Context::depthRangex(GLfixed n, GLfixed f)
{
UNIMPLEMENTED();
}
void Context::disableClientState(ClientVertexArrayType clientState)
{
mGLState.gles1().setClientStateEnabled(clientState, false);
}
void Context::enableClientState(ClientVertexArrayType clientState)
{
mGLState.gles1().setClientStateEnabled(clientState, true);
}
void Context::fogf(GLenum pname, GLfloat param)
{
UNIMPLEMENTED();
}
void Context::fogfv(GLenum pname, const GLfloat *params)
{
UNIMPLEMENTED();
}
void Context::fogx(GLenum pname, GLfixed param)
{
UNIMPLEMENTED();
}
void Context::fogxv(GLenum pname, const GLfixed *param)
{
UNIMPLEMENTED();
}
void Context::frustumf(GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f)
{
mGLState.gles1().multMatrix(angle::Mat4::Frustum(l, r, b, t, n, f));
}
void Context::frustumx(GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f)
{
mGLState.gles1().multMatrix(angle::Mat4::Frustum(FixedToFloat(l), FixedToFloat(r),
FixedToFloat(b), FixedToFloat(t),
FixedToFloat(n), FixedToFloat(f)));
}
void Context::getClipPlanef(GLenum plane, GLfloat *equation)
{
UNIMPLEMENTED();
}
void Context::getClipPlanex(GLenum plane, GLfixed *equation)
{
UNIMPLEMENTED();
}
void Context::getFixedv(GLenum pname, GLfixed *params)
{
UNIMPLEMENTED();
}
void Context::getLightfv(GLenum light, GLenum pname, GLfloat *params)
{
UNIMPLEMENTED();
}
void Context::getLightxv(GLenum light, GLenum pname, GLfixed *params)
{
UNIMPLEMENTED();
}
void Context::getMaterialfv(GLenum face, GLenum pname, GLfloat *params)
{
UNIMPLEMENTED();
}
void Context::getMaterialxv(GLenum face, GLenum pname, GLfixed *params)
{
UNIMPLEMENTED();
}
void Context::getTexEnvfv(GLenum env, GLenum pname, GLfloat *params)
{
UNIMPLEMENTED();
}
void Context::getTexEnviv(GLenum env, GLenum pname, GLint *params)
{
UNIMPLEMENTED();
}
void Context::getTexEnvxv(GLenum target, GLenum pname, GLfixed *params)
{
UNIMPLEMENTED();
}
void Context::getTexParameterxv(TextureType target, GLenum pname, GLfixed *params)
{
UNIMPLEMENTED();
}
void Context::lightModelf(GLenum pname, GLfloat param)
{
UNIMPLEMENTED();
}
void Context::lightModelfv(GLenum pname, const GLfloat *params)
{
UNIMPLEMENTED();
}
void Context::lightModelx(GLenum pname, GLfixed param)
{
UNIMPLEMENTED();
}
void Context::lightModelxv(GLenum pname, const GLfixed *param)
{
UNIMPLEMENTED();
}
void Context::lightf(GLenum light, GLenum pname, GLfloat param)
{
UNIMPLEMENTED();
}
void Context::lightfv(GLenum light, GLenum pname, const GLfloat *params)
{
UNIMPLEMENTED();
}
void Context::lightx(GLenum light, GLenum pname, GLfixed param)
{
UNIMPLEMENTED();
}
void Context::lightxv(GLenum light, GLenum pname, const GLfixed *params)
{
UNIMPLEMENTED();
}
void Context::lineWidthx(GLfixed width)
{
UNIMPLEMENTED();
}
void Context::loadIdentity()
{
mGLState.gles1().loadMatrix(angle::Mat4());
}
void Context::loadMatrixf(const GLfloat *m)
{
mGLState.gles1().loadMatrix(angle::Mat4(m));
}
void Context::loadMatrixx(const GLfixed *m)
{
mGLState.gles1().loadMatrix(FixedMatrixToMat4(m));
}
void Context::logicOp(GLenum opcode)
{
UNIMPLEMENTED();
}
void Context::materialf(GLenum face, GLenum pname, GLfloat param)
{
UNIMPLEMENTED();
}
void Context::materialfv(GLenum face, GLenum pname, const GLfloat *params)
{
UNIMPLEMENTED();
}
void Context::materialx(GLenum face, GLenum pname, GLfixed param)
{
UNIMPLEMENTED();
}
void Context::materialxv(GLenum face, GLenum pname, const GLfixed *param)
{
UNIMPLEMENTED();
}
void Context::matrixMode(MatrixType mode)
{
mGLState.gles1().setMatrixMode(mode);
}
void Context::multMatrixf(const GLfloat *m)
{
mGLState.gles1().multMatrix(angle::Mat4(m));
}
void Context::multMatrixx(const GLfixed *m)
{
mGLState.gles1().multMatrix(FixedMatrixToMat4(m));
}
void Context::multiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q)
{
unsigned int unit = target - GL_TEXTURE0;
ASSERT(target >= GL_TEXTURE0 && unit < getCaps().maxMultitextureUnits);
mGLState.gles1().setCurrentTextureCoords(unit, {s, t, r, q});
}
void Context::multiTexCoord4x(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q)
{
unsigned int unit = target - GL_TEXTURE0;
ASSERT(target >= GL_TEXTURE0 && unit < getCaps().maxMultitextureUnits);
mGLState.gles1().setCurrentTextureCoords(
unit, {FixedToFloat(s), FixedToFloat(t), FixedToFloat(r), FixedToFloat(q)});
}
void Context::normal3f(GLfloat nx, GLfloat ny, GLfloat nz)
{
mGLState.gles1().setCurrentNormal({nx, ny, nz});
}
void Context::normal3x(GLfixed nx, GLfixed ny, GLfixed nz)
{
mGLState.gles1().setCurrentNormal({FixedToFloat(nx), FixedToFloat(ny), FixedToFloat(nz)});
}
void Context::normalPointer(GLenum type, GLsizei stride, const void *ptr)
{
UNIMPLEMENTED();
}
void Context::orthof(GLfloat left,
GLfloat right,
GLfloat bottom,
GLfloat top,
GLfloat zNear,
GLfloat zFar)
{
mGLState.gles1().multMatrix(angle::Mat4::Ortho(left, right, bottom, top, zNear, zFar));
}
void Context::orthox(GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f)
{
mGLState.gles1().multMatrix(angle::Mat4::Ortho(FixedToFloat(l), FixedToFloat(r),
FixedToFloat(b), FixedToFloat(t),
FixedToFloat(n), FixedToFloat(f)));
}
void Context::pointParameterf(GLenum pname, GLfloat param)
{
UNIMPLEMENTED();
}
void Context::pointParameterfv(GLenum pname, const GLfloat *params)
{
UNIMPLEMENTED();
}
void Context::pointParameterx(GLenum pname, GLfixed param)
{
UNIMPLEMENTED();
}
void Context::pointParameterxv(GLenum pname, const GLfixed *params)
{
UNIMPLEMENTED();
}
void Context::pointSize(GLfloat size)
{
UNIMPLEMENTED();
}
void Context::pointSizex(GLfixed size)
{
UNIMPLEMENTED();
}
void Context::polygonOffsetx(GLfixed factor, GLfixed units)
{
UNIMPLEMENTED();
}
void Context::popMatrix()
{
mGLState.gles1().popMatrix();
}
void Context::pushMatrix()
{
mGLState.gles1().pushMatrix();
}
void Context::rotatef(float angle, float x, float y, float z)
{
mGLState.gles1().multMatrix(angle::Mat4::Rotate(angle, angle::Vector3(x, y, z)));
}
void Context::rotatex(GLfixed angle, GLfixed x, GLfixed y, GLfixed z)
{
mGLState.gles1().multMatrix(angle::Mat4::Rotate(
FixedToFloat(angle), angle::Vector3(FixedToFloat(x), FixedToFloat(y), FixedToFloat(z))));
}
void Context::sampleCoveragex(GLclampx value, GLboolean invert)
{
UNIMPLEMENTED();
}
void Context::scalef(float x, float y, float z)
{
mGLState.gles1().multMatrix(angle::Mat4::Scale(angle::Vector3(x, y, z)));
}
void Context::scalex(GLfixed x, GLfixed y, GLfixed z)
{
mGLState.gles1().multMatrix(
angle::Mat4::Scale(angle::Vector3(FixedToFloat(x), FixedToFloat(y), FixedToFloat(z))));
}
void Context::shadeModel(GLenum mode)
{
UNIMPLEMENTED();
}
void Context::texCoordPointer(GLint size, GLenum type, GLsizei stride, const void *ptr)
{
UNIMPLEMENTED();
}
void Context::texEnvf(GLenum target, GLenum pname, GLfloat param)
{
UNIMPLEMENTED();
}
void Context::texEnvfv(GLenum target, GLenum pname, const GLfloat *params)
{
UNIMPLEMENTED();
}
void Context::texEnvi(GLenum target, GLenum pname, GLint param)
{
UNIMPLEMENTED();
}
void Context::texEnviv(GLenum target, GLenum pname, const GLint *params)
{
UNIMPLEMENTED();
}
void Context::texEnvx(GLenum target, GLenum pname, GLfixed param)
{
UNIMPLEMENTED();
}
void Context::texEnvxv(GLenum target, GLenum pname, const GLfixed *params)
{
UNIMPLEMENTED();
}
void Context::texParameterx(TextureType target, GLenum pname, GLfixed param)
{
UNIMPLEMENTED();
}
void Context::texParameterxv(TextureType target, GLenum pname, const GLfixed *params)
{
UNIMPLEMENTED();
}
void Context::translatef(float x, float y, float z)
{
mGLState.gles1().multMatrix(angle::Mat4::Translate(angle::Vector3(x, y, z)));
}
void Context::translatex(GLfixed x, GLfixed y, GLfixed z)
{
mGLState.gles1().multMatrix(
angle::Mat4::Translate(angle::Vector3(FixedToFloat(x), FixedToFloat(y), FixedToFloat(z))));
}
void Context::vertexPointer(GLint size, GLenum type, GLsizei stride, const void *ptr)
{
UNIMPLEMENTED();
}
// GL_OES_draw_texture
void Context::drawTexf(float x, float y, float z, float width, float height)
{
UNIMPLEMENTED();
}
void Context::drawTexfv(const GLfloat *coords)
{
UNIMPLEMENTED();
}
void Context::drawTexi(GLint x, GLint y, GLint z, GLint width, GLint height)
{
UNIMPLEMENTED();
}
void Context::drawTexiv(const GLint *coords)
{
UNIMPLEMENTED();
}
void Context::drawTexs(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height)
{
UNIMPLEMENTED();
}
void Context::drawTexsv(const GLshort *coords)
{
UNIMPLEMENTED();
}
void Context::drawTexx(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height)
{
UNIMPLEMENTED();
}
void Context::drawTexxv(const GLfixed *coords)
{
UNIMPLEMENTED();
}
// GL_OES_matrix_palette
void Context::currentPaletteMatrix(GLuint matrixpaletteindex)
{
UNIMPLEMENTED();
}
void Context::loadPaletteFromModelViewMatrix()
{
UNIMPLEMENTED();
}
void Context::matrixIndexPointer(GLint size, GLenum type, GLsizei stride, const void *pointer)
{
UNIMPLEMENTED();
}
void Context::weightPointer(GLint size, GLenum type, GLsizei stride, const void *pointer)
{
UNIMPLEMENTED();
}
// GL_OES_point_size_array
void Context::pointSizePointer(GLenum type, GLsizei stride, const void *ptr)
{
UNIMPLEMENTED();
}
// GL_OES_query_matrix
GLbitfield Context::queryMatrixx(GLfixed *mantissa, GLint *exponent)
{
UNIMPLEMENTED();
return 0;
}
// GL_OES_texture_cube_map
void Context::getTexGenfv(GLenum coord, GLenum pname, GLfloat *params)
{
UNIMPLEMENTED();
}
void Context::getTexGeniv(GLenum coord, GLenum pname, GLint *params)
{
UNIMPLEMENTED();
}
void Context::getTexGenxv(GLenum coord, GLenum pname, GLfixed *params)
{
UNIMPLEMENTED();
}
void Context::texGenf(GLenum coord, GLenum pname, GLfloat param)
{
UNIMPLEMENTED();
}
void Context::texGenfv(GLenum coord, GLenum pname, const GLfloat *params)
{
UNIMPLEMENTED();
}
void Context::texGeni(GLenum coord, GLenum pname, GLint param)
{
UNIMPLEMENTED();
}
void Context::texGeniv(GLenum coord, GLenum pname, const GLint *params)
{
UNIMPLEMENTED();
}
void Context::texGenx(GLenum coord, GLenum pname, GLfixed param)
{
UNIMPLEMENTED();
}
void Context::texGenxv(GLenum coord, GLenum pname, const GLint *params)
{
UNIMPLEMENTED();
}
} // namespace gl