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

Side by Side Diff: gpu/command_buffer/client/gles2_implementation_unittest_autogen.h

Issue 1331843005: Implemented new fence syncs which replaces the old sync points. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reverted mojo readme, changed wait() to take a pointer 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file is auto-generated from 5 // This file is auto-generated from
6 // gpu/command_buffer/build_gles2_cmd_buffer.py 6 // gpu/command_buffer/build_gles2_cmd_buffer.py
7 // It's formatted by clang-format using chromium coding style: 7 // It's formatted by clang-format using chromium coding style:
8 // clang-format -i -style=chromium filename 8 // clang-format -i -style=chromium filename
9 // DO NOT EDIT! 9 // DO NOT EDIT!
10 10
(...skipping 3075 matching lines...) Expand 10 before | Expand all | Expand 10 after
3086 TEST_F(GLES2ImplementationTest, WaitSyncPointCHROMIUM) { 3086 TEST_F(GLES2ImplementationTest, WaitSyncPointCHROMIUM) {
3087 struct Cmds { 3087 struct Cmds {
3088 cmds::WaitSyncPointCHROMIUM cmd; 3088 cmds::WaitSyncPointCHROMIUM cmd;
3089 }; 3089 };
3090 Cmds expected; 3090 Cmds expected;
3091 expected.cmd.Init(1); 3091 expected.cmd.Init(1);
3092 3092
3093 gl_->WaitSyncPointCHROMIUM(1); 3093 gl_->WaitSyncPointCHROMIUM(1);
3094 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); 3094 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
3095 } 3095 }
3096 // TODO(zmo): Implement unit test for InsertFenceSyncCHROMIUM
3097 // TODO(zmo): Implement unit test for GenSyncTokenCHROMIUM
3096 3098
3097 TEST_F(GLES2ImplementationTest, DrawBuffersEXT) { 3099 TEST_F(GLES2ImplementationTest, DrawBuffersEXT) {
3098 GLenum data[1][1] = {{0}}; 3100 GLenum data[1][1] = {{0}};
3099 struct Cmds { 3101 struct Cmds {
3100 cmds::DrawBuffersEXTImmediate cmd; 3102 cmds::DrawBuffersEXTImmediate cmd;
3101 GLenum data[1][1]; 3103 GLenum data[1][1];
3102 }; 3104 };
3103 3105
3104 Cmds expected; 3106 Cmds expected;
3105 for (int ii = 0; ii < 1; ++ii) { 3107 for (int ii = 0; ii < 1; ++ii) {
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
3286 struct Cmds { 3288 struct Cmds {
3287 cmds::StencilThenCoverStrokePathCHROMIUM cmd; 3289 cmds::StencilThenCoverStrokePathCHROMIUM cmd;
3288 }; 3290 };
3289 Cmds expected; 3291 Cmds expected;
3290 expected.cmd.Init(1, 2, 3, GL_CONVEX_HULL_CHROMIUM); 3292 expected.cmd.Init(1, 2, 3, GL_CONVEX_HULL_CHROMIUM);
3291 3293
3292 gl_->StencilThenCoverStrokePathCHROMIUM(1, 2, 3, GL_CONVEX_HULL_CHROMIUM); 3294 gl_->StencilThenCoverStrokePathCHROMIUM(1, 2, 3, GL_CONVEX_HULL_CHROMIUM);
3293 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); 3295 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
3294 } 3296 }
3295 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_ 3297 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation_unittest.cc ('k') | gpu/command_buffer/client/gles2_interface_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698