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 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1892 TEST_F(GLES2ImplementationTest, DiscardBackbufferCHROMIUM) { | 1892 TEST_F(GLES2ImplementationTest, DiscardBackbufferCHROMIUM) { |
1893 struct Cmds { | 1893 struct Cmds { |
1894 cmds::DiscardBackbufferCHROMIUM cmd; | 1894 cmds::DiscardBackbufferCHROMIUM cmd; |
1895 }; | 1895 }; |
1896 Cmds expected; | 1896 Cmds expected; |
1897 expected.cmd.Init(); | 1897 expected.cmd.Init(); |
1898 | 1898 |
1899 gl_->DiscardBackbufferCHROMIUM(); | 1899 gl_->DiscardBackbufferCHROMIUM(); |
1900 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); | 1900 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); |
1901 } | 1901 } |
| 1902 |
| 1903 TEST_F(GLES2ImplementationTest, MatrixLoadfCHROMIUM) { |
| 1904 GLfloat data[16] = {0}; |
| 1905 struct Cmds { |
| 1906 cmds::MatrixLoadfCHROMIUMImmediate cmd; |
| 1907 GLfloat data[16]; |
| 1908 }; |
| 1909 |
| 1910 for (int jj = 0; jj < 16; ++jj) { |
| 1911 data[jj] = static_cast<GLfloat>(jj); |
| 1912 } |
| 1913 Cmds expected; |
| 1914 expected.cmd.Init(GL_PATH_PROJECTION_CHROMIUM, &data[0]); |
| 1915 gl_->MatrixLoadfCHROMIUM(GL_PATH_PROJECTION_CHROMIUM, &data[0]); |
| 1916 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); |
| 1917 } |
| 1918 |
| 1919 TEST_F(GLES2ImplementationTest, MatrixLoadIdentityCHROMIUM) { |
| 1920 struct Cmds { |
| 1921 cmds::MatrixLoadIdentityCHROMIUM cmd; |
| 1922 }; |
| 1923 Cmds expected; |
| 1924 expected.cmd.Init(GL_PATH_PROJECTION_CHROMIUM); |
| 1925 |
| 1926 gl_->MatrixLoadIdentityCHROMIUM(GL_PATH_PROJECTION_CHROMIUM); |
| 1927 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); |
| 1928 } |
1902 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_ | 1929 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_ |
OLD | NEW |