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 1812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1823 TEST_F(GLES2ImplementationTest, DiscardBackbufferCHROMIUM) { | 1823 TEST_F(GLES2ImplementationTest, DiscardBackbufferCHROMIUM) { |
1824 struct Cmds { | 1824 struct Cmds { |
1825 cmds::DiscardBackbufferCHROMIUM cmd; | 1825 cmds::DiscardBackbufferCHROMIUM cmd; |
1826 }; | 1826 }; |
1827 Cmds expected; | 1827 Cmds expected; |
1828 expected.cmd.Init(); | 1828 expected.cmd.Init(); |
1829 | 1829 |
1830 gl_->DiscardBackbufferCHROMIUM(); | 1830 gl_->DiscardBackbufferCHROMIUM(); |
1831 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); | 1831 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); |
1832 } | 1832 } |
| 1833 |
| 1834 TEST_F(GLES2ImplementationTest, MatrixLoadfCHROMIUM) { |
| 1835 GLfloat data[16] = {0}; |
| 1836 struct Cmds { |
| 1837 cmds::MatrixLoadfCHROMIUMImmediate cmd; |
| 1838 GLfloat data[16]; |
| 1839 }; |
| 1840 |
| 1841 for (int jj = 0; jj < 16; ++jj) { |
| 1842 data[jj] = static_cast<GLfloat>(jj); |
| 1843 } |
| 1844 Cmds expected; |
| 1845 expected.cmd.Init(GL_PROJECTION_CHROMIUM, &data[0]); |
| 1846 gl_->MatrixLoadfCHROMIUM(GL_PROJECTION_CHROMIUM, &data[0]); |
| 1847 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); |
| 1848 } |
| 1849 |
| 1850 TEST_F(GLES2ImplementationTest, MatrixLoadIdentityCHROMIUM) { |
| 1851 struct Cmds { |
| 1852 cmds::MatrixLoadIdentityCHROMIUM cmd; |
| 1853 }; |
| 1854 Cmds expected; |
| 1855 expected.cmd.Init(GL_PROJECTION_CHROMIUM); |
| 1856 |
| 1857 gl_->MatrixLoadIdentityCHROMIUM(GL_PROJECTION_CHROMIUM); |
| 1858 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); |
| 1859 } |
1833 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_ | 1860 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_ |
OLD | NEW |