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

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: make more consistent 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 1612 matching lines...) Expand 10 before | Expand all | Expand 10 after
1623 } 1623 }
1624 void MojoGLES2Impl::SwapInterval(GLint interval) { 1624 void MojoGLES2Impl::SwapInterval(GLint interval) {
1625 NOTREACHED() << "Unimplemented SwapInterval."; 1625 NOTREACHED() << "Unimplemented SwapInterval.";
1626 } 1626 }
1627 void MojoGLES2Impl::MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) { 1627 void MojoGLES2Impl::MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) {
1628 NOTREACHED() << "Unimplemented MatrixLoadfCHROMIUM."; 1628 NOTREACHED() << "Unimplemented MatrixLoadfCHROMIUM.";
1629 } 1629 }
1630 void MojoGLES2Impl::MatrixLoadIdentityCHROMIUM(GLenum matrixMode) { 1630 void MojoGLES2Impl::MatrixLoadIdentityCHROMIUM(GLenum matrixMode) {
1631 NOTREACHED() << "Unimplemented MatrixLoadIdentityCHROMIUM."; 1631 NOTREACHED() << "Unimplemented MatrixLoadIdentityCHROMIUM.";
1632 } 1632 }
1633 GLuint MojoGLES2Impl::GenPathsCHROMIUM(GLsizei range) {
1634 NOTREACHED() << "Unimplemented GenPathsCHROMIUM.";
1635 return 0;
1636 }
1637 void MojoGLES2Impl::DeletePathsCHROMIUM(GLuint path, GLsizei range) {
1638 NOTREACHED() << "Unimplemented DeletePathsCHROMIUM.";
1639 }
1640 GLboolean MojoGLES2Impl::IsPathCHROMIUM(GLuint path) {
1641 NOTREACHED() << "Unimplemented IsPathCHROMIUM.";
1642 return 0;
1643 }
1644 void MojoGLES2Impl::PathCommandsCHROMIUM(GLuint path,
1645 GLsizei numCommands,
1646 const GLubyte* commands,
1647 GLsizei numCoords,
1648 GLenum coordType,
1649 const GLvoid* coords) {
1650 NOTREACHED() << "Unimplemented PathCommandsCHROMIUM.";
1651 }
1652 void MojoGLES2Impl::PathParameterfCHROMIUM(GLuint path,
1653 GLenum pname,
1654 GLfloat value) {
1655 NOTREACHED() << "Unimplemented PathParameterfCHROMIUM.";
1656 }
1657 void MojoGLES2Impl::PathParameteriCHROMIUM(GLuint path,
1658 GLenum pname,
1659 GLint value) {
1660 NOTREACHED() << "Unimplemented PathParameteriCHROMIUM.";
1661 }
1662 void MojoGLES2Impl::PathStencilFuncCHROMIUM(GLenum func,
1663 GLint ref,
1664 GLuint mask) {
1665 NOTREACHED() << "Unimplemented PathStencilFuncCHROMIUM.";
1666 }
1667 void MojoGLES2Impl::StencilFillPathCHROMIUM(GLuint path,
1668 GLenum fillMode,
1669 GLuint mask) {
1670 NOTREACHED() << "Unimplemented StencilFillPathCHROMIUM.";
1671 }
1672 void MojoGLES2Impl::StencilStrokePathCHROMIUM(GLuint path,
1673 GLint reference,
1674 GLuint mask) {
1675 NOTREACHED() << "Unimplemented StencilStrokePathCHROMIUM.";
1676 }
1677 void MojoGLES2Impl::CoverFillPathCHROMIUM(GLuint path, GLenum coverMode) {
1678 NOTREACHED() << "Unimplemented CoverFillPathCHROMIUM.";
1679 }
1680 void MojoGLES2Impl::CoverStrokePathCHROMIUM(GLuint path, GLenum coverMode) {
1681 NOTREACHED() << "Unimplemented CoverStrokePathCHROMIUM.";
1682 }
1683 void MojoGLES2Impl::StencilThenCoverFillPathCHROMIUM(GLuint path,
1684 GLenum fillMode,
1685 GLuint mask,
1686 GLenum coverMode) {
1687 NOTREACHED() << "Unimplemented StencilThenCoverFillPathCHROMIUM.";
1688 }
1689 void MojoGLES2Impl::StencilThenCoverStrokePathCHROMIUM(GLuint path,
1690 GLint reference,
1691 GLuint mask,
1692 GLenum coverMode) {
1693 NOTREACHED() << "Unimplemented StencilThenCoverStrokePathCHROMIUM.";
1694 }
1633 GLenum MojoGLES2Impl::GetGraphicsResetStatusKHR() { 1695 GLenum MojoGLES2Impl::GetGraphicsResetStatusKHR() {
1634 NOTREACHED() << "Unimplemented GetGraphicsResetStatusKHR."; 1696 NOTREACHED() << "Unimplemented GetGraphicsResetStatusKHR.";
1635 return 0; 1697 return 0;
1636 } 1698 }
1637 void MojoGLES2Impl::BlendBarrierKHR() { 1699 void MojoGLES2Impl::BlendBarrierKHR() {
1638 NOTREACHED() << "Unimplemented BlendBarrierKHR."; 1700 NOTREACHED() << "Unimplemented BlendBarrierKHR.";
1639 } 1701 }
1640 1702
1641 } // namespace mojo 1703 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698