Commit a9dfb3ba by Chris Dalton Committed by Commit Bot

Allow "GL_INVERT" nvpr fill mode to pass validation

Bug: angleproject:3617 Bug: skia:9214 Change-Id: I11f4e845095cc1ebcbc2717682e945bcf2bb67e3 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1679631Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Commit-Queue: Geoff Lang <geofflang@chromium.org>
parent 68e09a14
......@@ -3920,6 +3920,7 @@ bool ValidateStencilFillPathCHROMIUM(Context *context, GLuint path, GLenum fillM
switch (fillMode)
{
case GL_INVERT:
case GL_COUNT_UP_CHROMIUM:
case GL_COUNT_DOWN_CHROMIUM:
break;
......@@ -4090,6 +4091,7 @@ bool ValidateStencilFillPathInstancedCHROMIUM(Context *context,
switch (fillMode)
{
case GL_INVERT:
case GL_COUNT_UP_CHROMIUM:
case GL_COUNT_DOWN_CHROMIUM:
break;
......@@ -4152,6 +4154,7 @@ bool ValidateStencilThenCoverFillPathInstancedCHROMIUM(Context *context,
switch (fillMode)
{
case GL_INVERT:
case GL_COUNT_UP_CHROMIUM:
case GL_COUNT_DOWN_CHROMIUM:
break;
......
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