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

Unified Diff: webkit/gpu/webgraphicscontext3d_in_process_impl.cc

Issue 10829209: Add GL_CHROMIUM_texture_mailbox entrypoints to wgc3d implementations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
« no previous file with comments | « webkit/gpu/webgraphicscontext3d_in_process_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/gpu/webgraphicscontext3d_in_process_impl.cc
diff --git a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
index 14701c3bf5ea9b03d3409b40e72b2b56df09b3a0..6decabf44ec26b556224754ab20e10ea6dbabd4d 100644
--- a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
+++ b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
@@ -752,6 +752,21 @@ void WebGraphicsContext3DInProcessImpl::bindUniformLocationCHROMIUM(
NOTIMPLEMENTED();
}
+void WebGraphicsContext3DInProcessImpl::genMailboxCHROMIUM(
+ WGC3Dbyte* mailbox) {
+ NOTIMPLEMENTED();
+}
+
+void WebGraphicsContext3DInProcessImpl::produceTextureCHROMIUM(
+ WGC3Denum target, const WGC3Dbyte* mailbox) {
+ NOTIMPLEMENTED();
+}
+
+void WebGraphicsContext3DInProcessImpl::consumeTextureCHROMIUM(
+ WGC3Denum target, const WGC3Dbyte* mailbox) {
+ NOTIMPLEMENTED();
+}
+
WebString WebGraphicsContext3DInProcessImpl::
getRequestableExtensionsCHROMIUM() {
return WebString();
« no previous file with comments | « webkit/gpu/webgraphicscontext3d_in_process_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698