Commit b82da851 by Gert Wollny

Capture/Replay: Add capture for Fogfv parameters

Enable FogTest* tests for capture/replay. Bug: angleproject:6050 Change-Id: Ic183ef550f57a790a3d113f20f67946487006166 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2954263Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarCody Northrop <cnorthrop@google.com>
parent d42df5c7
...@@ -49,7 +49,8 @@ void CaptureFogfv_params(const State &glState, ...@@ -49,7 +49,8 @@ void CaptureFogfv_params(const State &glState,
const GLfloat *params, const GLfloat *params,
ParamCapture *paramCapture) ParamCapture *paramCapture)
{ {
UNIMPLEMENTED(); int count = (pname == GL_FOG_COLOR) ? 4 : 1;
CaptureMemory(params, count * sizeof(GLfloat), paramCapture);
} }
void CaptureFogxv_param(const State &glState, void CaptureFogxv_param(const State &glState,
......
...@@ -101,9 +101,6 @@ FramebufferObjectTest.TextureObjectDifferentFormats/* ...@@ -101,9 +101,6 @@ FramebufferObjectTest.TextureObjectDifferentFormats/*
BootAnimationTest.DefaultBootAnimation/* BootAnimationTest.DefaultBootAnimation/*
# ES1 compile failed tests # ES1 compile failed tests
FogTest.NegativeParameter/*
FogTest.NegativeValues/*
FogTest.Set/*
LightsTest.InitialState/* LightsTest.InitialState/*
LightsTest.NegativeInvalidEnum/* LightsTest.NegativeInvalidEnum/*
LightsTest.NegativeInvalidValue/* LightsTest.NegativeInvalidValue/*
......
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