OLD | NEW |
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 Loading... |
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 | |
291 | 290 |
292 TEST_F(GLES2ImplementationTest, ColorMask) { | 291 TEST_F(GLES2ImplementationTest, ColorMask) { |
293 struct Cmds { | 292 struct Cmds { |
294 cmds::ColorMask cmd; | 293 cmds::ColorMask cmd; |
295 }; | 294 }; |
296 Cmds expected; | 295 Cmds expected; |
297 expected.cmd.Init(true, true, true, true); | 296 expected.cmd.Init(true, true, true, true); |
298 | 297 |
299 gl_->ColorMask(true, true, true, true); | 298 gl_->ColorMask(true, true, true, true); |
300 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); | 299 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); |
(...skipping 2675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2976 struct Cmds { | 2975 struct Cmds { |
2977 cmds::MatrixLoadIdentityCHROMIUM cmd; | 2976 cmds::MatrixLoadIdentityCHROMIUM cmd; |
2978 }; | 2977 }; |
2979 Cmds expected; | 2978 Cmds expected; |
2980 expected.cmd.Init(GL_PATH_PROJECTION_CHROMIUM); | 2979 expected.cmd.Init(GL_PATH_PROJECTION_CHROMIUM); |
2981 | 2980 |
2982 gl_->MatrixLoadIdentityCHROMIUM(GL_PATH_PROJECTION_CHROMIUM); | 2981 gl_->MatrixLoadIdentityCHROMIUM(GL_PATH_PROJECTION_CHROMIUM); |
2983 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); | 2982 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); |
2984 } | 2983 } |
2985 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_ | 2984 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_ |
OLD | NEW |