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

Side by Side Diff: mojo/gpu/mojo_gles2_impl_autogen.cc

Issue 169403005: command_buffer: Implement path rendering functions for CHROMIUM_path_rendering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nv-pr-02-texgen
Patch Set: rebase Created 5 years, 6 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 1597 matching lines...) Expand 10 before | Expand all | Expand 10 after
1608 } 1608 }
1609 void MojoGLES2Impl::SwapInterval(GLint interval) { 1609 void MojoGLES2Impl::SwapInterval(GLint interval) {
1610 NOTREACHED() << "Unimplemented SwapInterval."; 1610 NOTREACHED() << "Unimplemented SwapInterval.";
1611 } 1611 }
1612 void MojoGLES2Impl::MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) { 1612 void MojoGLES2Impl::MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) {
1613 NOTREACHED() << "Unimplemented MatrixLoadfCHROMIUM."; 1613 NOTREACHED() << "Unimplemented MatrixLoadfCHROMIUM.";
1614 } 1614 }
1615 void MojoGLES2Impl::MatrixLoadIdentityCHROMIUM(GLenum matrixMode) { 1615 void MojoGLES2Impl::MatrixLoadIdentityCHROMIUM(GLenum matrixMode) {
1616 NOTREACHED() << "Unimplemented MatrixLoadIdentityCHROMIUM."; 1616 NOTREACHED() << "Unimplemented MatrixLoadIdentityCHROMIUM.";
1617 } 1617 }
1618 GLuint MojoGLES2Impl::GenPathsCHROMIUM(GLsizei range) {
1619 NOTREACHED() << "Unimplemented GenPathsCHROMIUM.";
1620 return 0;
1621 }
1622 void MojoGLES2Impl::DeletePathsCHROMIUM(GLuint path, GLsizei range) {
1623 NOTREACHED() << "Unimplemented DeletePathsCHROMIUM.";
1624 }
1625 GLboolean MojoGLES2Impl::IsPathCHROMIUM(GLuint path) {
1626 NOTREACHED() << "Unimplemented IsPathCHROMIUM.";
1627 return 0;
1628 }
1629 void MojoGLES2Impl::PathCommandsCHROMIUM(GLuint path,
1630 GLsizei numCommands,
1631 const GLubyte* commands,
1632 GLsizei numCoords,
1633 GLenum coordType,
1634 const GLvoid* coords) {
1635 NOTREACHED() << "Unimplemented PathCommandsCHROMIUM.";
1636 }
1637 void MojoGLES2Impl::PathParameterfCHROMIUM(GLuint path,
1638 GLenum pname,
1639 GLfloat value) {
1640 NOTREACHED() << "Unimplemented PathParameterfCHROMIUM.";
1641 }
1642 void MojoGLES2Impl::PathParameteriCHROMIUM(GLuint path,
1643 GLenum pname,
1644 GLint value) {
1645 NOTREACHED() << "Unimplemented PathParameteriCHROMIUM.";
1646 }
1647 void MojoGLES2Impl::PathStencilFuncCHROMIUM(GLenum func,
1648 GLint ref,
1649 GLuint mask) {
1650 NOTREACHED() << "Unimplemented PathStencilFuncCHROMIUM.";
1651 }
1652 void MojoGLES2Impl::StencilFillPathCHROMIUM(GLuint path,
1653 GLenum fillMode,
1654 GLuint mask) {
1655 NOTREACHED() << "Unimplemented StencilFillPathCHROMIUM.";
1656 }
1657 void MojoGLES2Impl::StencilStrokePathCHROMIUM(GLuint path,
1658 GLint reference,
1659 GLuint mask) {
1660 NOTREACHED() << "Unimplemented StencilStrokePathCHROMIUM.";
1661 }
1662 void MojoGLES2Impl::CoverFillPathCHROMIUM(GLuint path, GLenum coverMode) {
1663 NOTREACHED() << "Unimplemented CoverFillPathCHROMIUM.";
1664 }
1665 void MojoGLES2Impl::CoverStrokePathCHROMIUM(GLuint path, GLenum coverMode) {
1666 NOTREACHED() << "Unimplemented CoverStrokePathCHROMIUM.";
1667 }
1668 void MojoGLES2Impl::StencilThenCoverFillPathCHROMIUM(GLuint path,
1669 GLenum fillMode,
1670 GLuint mask,
1671 GLenum coverMode) {
1672 NOTREACHED() << "Unimplemented StencilThenCoverFillPathCHROMIUM.";
1673 }
1674 void MojoGLES2Impl::StencilThenCoverStrokePathCHROMIUM(GLuint path,
1675 GLint reference,
1676 GLuint mask,
1677 GLenum coverMode) {
1678 NOTREACHED() << "Unimplemented StencilThenCoverStrokePathCHROMIUM.";
1679 }
1618 GLenum MojoGLES2Impl::GetGraphicsResetStatusKHR() { 1680 GLenum MojoGLES2Impl::GetGraphicsResetStatusKHR() {
1619 NOTREACHED() << "Unimplemented GetGraphicsResetStatusKHR."; 1681 NOTREACHED() << "Unimplemented GetGraphicsResetStatusKHR.";
1620 return 0; 1682 return 0;
1621 } 1683 }
1622 void MojoGLES2Impl::BlendBarrierKHR() { 1684 void MojoGLES2Impl::BlendBarrierKHR() {
1623 NOTREACHED() << "Unimplemented BlendBarrierKHR."; 1685 NOTREACHED() << "Unimplemented BlendBarrierKHR.";
1624 } 1686 }
1625 1687
1626 } // namespace mojo 1688 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698