Commit 58502aa5 by Lubosz Sarnecki Committed by Commit Bot

capture_gles_1_0: Implement capture functions.

Implement various capture functions as required by the GLES1 tests and GLES1 applications like Dr. Driving. Implements glMultMatrixf, glTexEnvxv, glLightxv, glLoadMatrixf and glGetFixedv. Bug: angleproject:5751 Change-Id: Id22899d755a9126f91b37eeea4619d6a03636f8a Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2756533Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarCody Northrop <cnorthrop@google.com> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 67232387
......@@ -84,7 +84,7 @@ void CaptureGetFixedv_params(const State &glState,
GLfixed *params,
ParamCapture *paramCapture)
{
UNIMPLEMENTED();
CaptureGetParameter(glState, pname, sizeof(GLfixed), paramCapture);
}
void CaptureGetLightfv_params(const State &glState,
......@@ -202,7 +202,7 @@ void CaptureLightxv_params(const State &glState,
const GLfixed *params,
ParamCapture *paramCapture)
{
UNIMPLEMENTED();
CaptureMemory(params, sizeof(GLfixed), paramCapture);
}
void CaptureLoadMatrixf_m(const State &glState,
......@@ -210,7 +210,7 @@ void CaptureLoadMatrixf_m(const State &glState,
const GLfloat *m,
ParamCapture *paramCapture)
{
UNIMPLEMENTED();
CaptureMemory(m, sizeof(GLfloat) * 16, paramCapture);
}
void CaptureLoadMatrixx_m(const State &glState,
......@@ -246,7 +246,7 @@ void CaptureMultMatrixf_m(const State &glState,
const GLfloat *m,
ParamCapture *paramCapture)
{
UNIMPLEMENTED();
CaptureMemory(m, sizeof(GLfloat) * 16, paramCapture);
}
void CaptureMultMatrixx_m(const State &glState,
......@@ -323,7 +323,7 @@ void CaptureTexEnvxv_params(const State &glState,
const GLfixed *params,
ParamCapture *paramCapture)
{
UNIMPLEMENTED();
CaptureMemory(params, sizeof(GLfixed), paramCapture);
}
void CaptureTexParameterxv_params(const State &glState,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment