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

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: rebase Created 6 years, 8 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 1821 matching lines...) Expand 10 before | Expand all | Expand 10 after
1832 TEST_F(GLES2ImplementationTest, DiscardBackbufferCHROMIUM) { 1832 TEST_F(GLES2ImplementationTest, DiscardBackbufferCHROMIUM) {
1833 struct Cmds { 1833 struct Cmds {
1834 cmds::DiscardBackbufferCHROMIUM cmd; 1834 cmds::DiscardBackbufferCHROMIUM cmd;
1835 }; 1835 };
1836 Cmds expected; 1836 Cmds expected;
1837 expected.cmd.Init(); 1837 expected.cmd.Init();
1838 1838
1839 gl_->DiscardBackbufferCHROMIUM(); 1839 gl_->DiscardBackbufferCHROMIUM();
1840 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); 1840 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
1841 } 1841 }
1842
1843 TEST_F(GLES2ImplementationTest, MatrixMode) {
1844 struct Cmds {
1845 cmds::MatrixMode cmd;
1846 };
1847 Cmds expected;
1848 expected.cmd.Init(GL_PROJECTION);
1849
1850 gl_->MatrixMode(GL_PROJECTION);
1851 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
1852 }
1853
1854 TEST_F(GLES2ImplementationTest, LoadMatrixf) {
1855 GLfloat data[16] = {0};
1856 struct Cmds {
1857 cmds::LoadMatrixfImmediate cmd;
1858 GLfloat data[16];
1859 };
1860
1861 for (int jj = 0; jj < 16; ++jj) {
1862 data[jj] = static_cast<GLfloat>(jj);
1863 }
1864 Cmds expected;
1865 expected.cmd.Init(&data[0]);
1866 gl_->LoadMatrixf(&data[0]);
1867 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
1868 }
1869
1870 TEST_F(GLES2ImplementationTest, LoadIdentity) {
1871 struct Cmds {
1872 cmds::LoadIdentity cmd;
1873 };
1874 Cmds expected;
1875 expected.cmd.Init();
1876
1877 gl_->LoadIdentity();
1878 EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
1879 }
1842 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_ 1880 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698