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

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

Issue 952893003: Update from https://crrev.com/317530 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix gn for nacl Created 5 years, 10 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 TEST_F(GLES2ImplementationTest, ClearStencil) { 280 TEST_F(GLES2ImplementationTest, ClearStencil) {
281 struct Cmds { 281 struct Cmds {
282 cmds::ClearStencil cmd; 282 cmds::ClearStencil cmd;
283 }; 283 };
284 Cmds expected; 284 Cmds expected;
285 expected.cmd.Init(1); 285 expected.cmd.Init(1);
286 286
287 gl_->ClearStencil(1); 287 gl_->ClearStencil(1);
288 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); 288 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
289 } 289 }
290 // TODO(zmo): Implement unit test for ClientWaitSync
290 291
291 TEST_F(GLES2ImplementationTest, ColorMask) { 292 TEST_F(GLES2ImplementationTest, ColorMask) {
292 struct Cmds { 293 struct Cmds {
293 cmds::ColorMask cmd; 294 cmds::ColorMask cmd;
294 }; 295 };
295 Cmds expected; 296 Cmds expected;
296 expected.cmd.Init(true, true, true, true); 297 expected.cmd.Init(true, true, true, true);
297 298
298 gl_->ColorMask(true, true, true, true); 299 gl_->ColorMask(true, true, true, true);
299 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); 300 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
(...skipping 2675 matching lines...) Expand 10 before | Expand all | Expand 10 after
2975 struct Cmds { 2976 struct Cmds {
2976 cmds::MatrixLoadIdentityCHROMIUM cmd; 2977 cmds::MatrixLoadIdentityCHROMIUM cmd;
2977 }; 2978 };
2978 Cmds expected; 2979 Cmds expected;
2979 expected.cmd.Init(GL_PATH_PROJECTION_CHROMIUM); 2980 expected.cmd.Init(GL_PATH_PROJECTION_CHROMIUM);
2980 2981
2981 gl_->MatrixLoadIdentityCHROMIUM(GL_PATH_PROJECTION_CHROMIUM); 2982 gl_->MatrixLoadIdentityCHROMIUM(GL_PATH_PROJECTION_CHROMIUM);
2982 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); 2983 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
2983 } 2984 }
2984 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_ 2985 #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