Commit 50f411e1 by Cody Northrop Committed by Commit Bot

Capture/Replay: Support DrawElementsBaseVertex

Test: Genshin Impact MEC Bug: b/182307835 Bug: b/181794064 Change-Id: Iedaecb6aa7ab7af189534f620549727f60b69ee8 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2746657Reviewed-by: 's avatarTim Van Patten <timvp@google.com> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Cody Northrop <cnorthrop@google.com>
parent c5a7da47
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
// capture_gles32_params.cpp: // capture_gles32_params.cpp:
// Pointer parameter capture functions for the OpenGL ES 3.2 entry points. // Pointer parameter capture functions for the OpenGL ES 3.2 entry points.
#include "libANGLE/capture/capture_gles_2_0_autogen.h"
#include "libANGLE/capture/capture_gles_3_2_autogen.h" #include "libANGLE/capture/capture_gles_3_2_autogen.h"
using namespace angle; using namespace angle;
...@@ -57,7 +58,8 @@ void CaptureDrawElementsBaseVertex_indices(const State &glState, ...@@ -57,7 +58,8 @@ void CaptureDrawElementsBaseVertex_indices(const State &glState,
GLint basevertex, GLint basevertex,
ParamCapture *indicesParam) ParamCapture *indicesParam)
{ {
UNIMPLEMENTED(); CaptureDrawElements_indices(glState, isCallValid, modePacked, count, typePacked, indices,
indicesParam);
} }
void CaptureDrawElementsInstancedBaseVertex_indices(const State &glState, void CaptureDrawElementsInstancedBaseVertex_indices(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