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

Unified Diff: cc/test/test_gles2_interface.cc

Issue 371463009: Making use of bindless variants mailbox produce/consume on remainders. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix cc tests Created 6 years, 5 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 | « cc/test/test_gles2_interface.h ('k') | cc/test/test_web_graphics_context_3d.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/test_gles2_interface.cc
diff --git a/cc/test/test_gles2_interface.cc b/cc/test/test_gles2_interface.cc
index cf28225ed8ea74805d1c932d6c2e88336afbffc0..26ba3e150b0b86d38b40ed38b7d1c7586361633c 100644
--- a/cc/test/test_gles2_interface.cc
+++ b/cc/test/test_gles2_interface.cc
@@ -360,11 +360,23 @@ void TestGLES2Interface::ProduceTextureCHROMIUM(GLenum target,
test_context_->produceTextureCHROMIUM(target, mailbox);
}
+void TestGLES2Interface::ProduceTextureDirectCHROMIUM(GLuint texture,
+ GLenum target,
+ const GLbyte* mailbox) {
+ test_context_->produceTextureDirectCHROMIUM(texture, target, mailbox);
+}
+
void TestGLES2Interface::ConsumeTextureCHROMIUM(GLenum target,
const GLbyte* mailbox) {
test_context_->consumeTextureCHROMIUM(target, mailbox);
}
+GLuint TestGLES2Interface::CreateAndConsumeTextureCHROMIUM(
+ GLenum target,
+ const GLbyte* mailbox) {
+ return test_context_->createAndConsumeTextureCHROMIUM(target, mailbox);
+}
+
void TestGLES2Interface::ResizeCHROMIUM(GLuint width,
GLuint height,
float device_scale) {
« no previous file with comments | « cc/test/test_gles2_interface.h ('k') | cc/test/test_web_graphics_context_3d.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698