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

Unified Diff: gpu/command_buffer/client/gles2_implementation_unittest_autogen.h

Issue 1427543002: Modified old wait sync point functions to also accept new sync tokens. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added DCHECK for valid sync token before IPC conversions Created 5 years, 2 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: gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
diff --git a/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h b/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
index 37d601d74469a24100a361389e2261b6cb0c5727..c587367f652ae285444bb1cf3ec978c7dd10a568 100644
--- a/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
+++ b/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
@@ -3044,17 +3044,6 @@ TEST_F(GLES2ImplementationTest, LoseContextCHROMIUM) {
EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
}
-TEST_F(GLES2ImplementationTest, WaitSyncPointCHROMIUM) {
- struct Cmds {
- cmds::WaitSyncPointCHROMIUM cmd;
- };
- Cmds expected;
- expected.cmd.Init(1);
-
- gl_->WaitSyncPointCHROMIUM(1);
- EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
-}
-
TEST_F(GLES2ImplementationTest, DrawBuffersEXT) {
GLenum data[1][1] = {{0}};
struct Cmds {
@@ -3251,11 +3240,4 @@ TEST_F(GLES2ImplementationTest, StencilThenCoverStrokePathCHROMIUM) {
gl_->StencilThenCoverStrokePathCHROMIUM(1, 2, 3, GL_CONVEX_HULL_CHROMIUM);
EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
}
-// TODO(zmo): Implement unit test for StencilFillPathInstancedCHROMIUM
-// TODO(zmo): Implement unit test for StencilStrokePathInstancedCHROMIUM
-// TODO(zmo): Implement unit test for CoverFillPathInstancedCHROMIUM
-// TODO(zmo): Implement unit test for CoverStrokePathInstancedCHROMIUM
-// TODO(zmo): Implement unit test for StencilThenCoverFillPathInstancedCHROMIUM
-// TODO(zmo): Implement unit test for
-// StencilThenCoverStrokePathInstancedCHROMIUM
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_

Powered by Google App Engine
This is Rietveld 408576698