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

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

Issue 169603002: Add initial support for NV_path_rendering extension to gpu command buffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comment Created 6 years, 4 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 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation_impl_autogen.h ('k') | gpu/command_buffer/client/gles2_interface_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698