Commit 040a7ad3 authored by Geoff Lang's avatar Geoff Lang Committed by Commit Bot

Forward EXT_blend_func_extended entry points in the passthrough decoder.

BUG=angleproject:3401

Change-Id: If16d04ab38673af68b582804f2ca9cf168e23231
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584371Reviewed-by: default avatarKai Ninomiya <kainino@chromium.org>
Commit-Queue: Geoff Lang <geofflang@chromium.org>
Cr-Commit-Position: refs/heads/master@{#654632}
parent 5c12c074
...@@ -4872,7 +4872,8 @@ error::Error GLES2DecoderPassthroughImpl::DoBindFragDataLocationIndexedEXT( ...@@ -4872,7 +4872,8 @@ error::Error GLES2DecoderPassthroughImpl::DoBindFragDataLocationIndexedEXT(
GLuint colorNumber, GLuint colorNumber,
GLuint index, GLuint index,
const char* name) { const char* name) {
NOTIMPLEMENTED(); api()->glBindFragDataLocationIndexedFn(
GetProgramServiceID(program, resources_), colorNumber, index, name);
return error::kNoError; return error::kNoError;
} }
...@@ -4880,7 +4881,8 @@ error::Error GLES2DecoderPassthroughImpl::DoBindFragDataLocationEXT( ...@@ -4880,7 +4881,8 @@ error::Error GLES2DecoderPassthroughImpl::DoBindFragDataLocationEXT(
GLuint program, GLuint program,
GLuint colorNumber, GLuint colorNumber,
const char* name) { const char* name) {
NOTIMPLEMENTED(); api()->glBindFragDataLocationFn(GetProgramServiceID(program, resources_),
colorNumber, name);
return error::kNoError; return error::kNoError;
} }
...@@ -4888,7 +4890,8 @@ error::Error GLES2DecoderPassthroughImpl::DoGetFragDataIndexEXT( ...@@ -4888,7 +4890,8 @@ error::Error GLES2DecoderPassthroughImpl::DoGetFragDataIndexEXT(
GLuint program, GLuint program,
const char* name, const char* name,
GLint* index) { GLint* index) {
NOTIMPLEMENTED(); *index = api()->glGetFragDataIndexFn(GetProgramServiceID(program, resources_),
name);
return error::kNoError; return error::kNoError;
} }
......
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