Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(782)

Unified Diff: content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc

Issue 299043003: Adding bindless variants mailbox produce/consume (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc
diff --git a/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc b/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc
index 3638ecfde7a4317558a8ad4872df6cd01d884fa4..cebf3cf62ae049179e5dd7df2375d2e93ed753b6 100644
--- a/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc
+++ b/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc
@@ -1268,8 +1268,13 @@ void WebGraphicsContext3DCommandBufferImpl::loseContextCHROMIUM(
DELEGATE_TO_GL_1(genMailboxCHROMIUM, GenMailboxCHROMIUM, WGC3Dbyte*)
DELEGATE_TO_GL_2(produceTextureCHROMIUM, ProduceTextureCHROMIUM,
WGC3Denum, const WGC3Dbyte*)
+DELEGATE_TO_GL_3(produceTextureBindlessCHROMIUM, ProduceTextureBindlessCHROMIUM,
+ WebGLId, WGC3Denum, const WGC3Dbyte*)
DELEGATE_TO_GL_2(consumeTextureCHROMIUM, ConsumeTextureCHROMIUM,
WGC3Denum, const WGC3Dbyte*)
+DELEGATE_TO_GL_2R(createAndConsumeTextureCHROMIUM,
+ CreateAndConsumeTextureCHROMIUM,
+ WGC3Denum, const WGC3Dbyte*, WebGLId)
void WebGraphicsContext3DCommandBufferImpl::insertEventMarkerEXT(
const WGC3Dchar* marker) {

Powered by Google App Engine
This is Rietveld 408576698