Commit 7ce16cda by shrekshao Committed by Commit Bot

Fix ANGLE_base_vertex_base_instance baseInstances type

First two appearances of baseInstances should have type GLuint instead of GLint. It should be a typo. Bug: angleproject:4838 Change-Id: I3df0dd9deb90a18bb2527ba24fe2ddd2766dd7f0 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2298200Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Commit-Queue: Shrek Shao <shrekshao@google.com>
parent 3e0b61a9
......@@ -24,8 +24,8 @@ Status
Version
Last Modified Date: August 13, 2019
Author Revision: 1
Last Modified Date: July 14, 2020
Author Revision: 2
Number
......@@ -95,7 +95,7 @@ New Procedures and Functions
const GLint* firsts,
const GLsizei* counts,
const GLsizei* instanceCounts,
const GLint* baseInstances,
const GLuint* baseInstances,
const GLsizei drawcount);
void MultiDrawElementsInstancedBaseVertexBaseInstanceANGLE(enum mode,
......@@ -104,7 +104,7 @@ New Procedures and Functions
const GLvoid* const* indices,
const GLsizei* instanceCounts,
const GLint* baseVertices,
const GLint* baseInstances,
const GLuint* baseInstances,
const GLsizei drawcount);
New Tokens
......@@ -249,3 +249,4 @@ Revision History
Rev. Date Author Changes
---- -------- ---------- --------------------------------------------
1 08/13/19 Shrek Shao First revision.
2 07/14/20 Shrek Shao Fix baseInstance type from GLint to GLuint.
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