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

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: fix windows build Created 5 years, 5 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
« no previous file with comments | « mojo/gpu/mojo_gles2_impl_autogen.h ('k') | ui/gl/generate_bindings.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1626 matching lines...) Expand 10 before | Expand all | Expand 10 after
1637 } 1637 }
1638 void MojoGLES2Impl::SwapInterval(GLint interval) { 1638 void MojoGLES2Impl::SwapInterval(GLint interval) {
1639 NOTREACHED() << "Unimplemented SwapInterval."; 1639 NOTREACHED() << "Unimplemented SwapInterval.";
1640 } 1640 }
1641 void MojoGLES2Impl::MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) { 1641 void MojoGLES2Impl::MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) {
1642 NOTREACHED() << "Unimplemented MatrixLoadfCHROMIUM."; 1642 NOTREACHED() << "Unimplemented MatrixLoadfCHROMIUM.";
1643 } 1643 }
1644 void MojoGLES2Impl::MatrixLoadIdentityCHROMIUM(GLenum matrixMode) { 1644 void MojoGLES2Impl::MatrixLoadIdentityCHROMIUM(GLenum matrixMode) {
1645 NOTREACHED() << "Unimplemented MatrixLoadIdentityCHROMIUM."; 1645 NOTREACHED() << "Unimplemented MatrixLoadIdentityCHROMIUM.";
1646 } 1646 }
1647 GLuint MojoGLES2Impl::GenPathsCHROMIUM(GLsizei range) {
1648 NOTREACHED() << "Unimplemented GenPathsCHROMIUM.";
1649 return 0;
1650 }
1651 void MojoGLES2Impl::DeletePathsCHROMIUM(GLuint path, GLsizei range) {
1652 NOTREACHED() << "Unimplemented DeletePathsCHROMIUM.";
1653 }
1654 GLboolean MojoGLES2Impl::IsPathCHROMIUM(GLuint path) {
1655 NOTREACHED() << "Unimplemented IsPathCHROMIUM.";
1656 return 0;
1657 }
1658 void MojoGLES2Impl::PathCommandsCHROMIUM(GLuint path,
1659 GLsizei numCommands,
1660 const GLubyte* commands,
1661 GLsizei numCoords,
1662 GLenum coordType,
1663 const GLvoid* coords) {
1664 NOTREACHED() << "Unimplemented PathCommandsCHROMIUM.";
1665 }
1666 void MojoGLES2Impl::PathParameterfCHROMIUM(GLuint path,
1667 GLenum pname,
1668 GLfloat value) {
1669 NOTREACHED() << "Unimplemented PathParameterfCHROMIUM.";
1670 }
1671 void MojoGLES2Impl::PathParameteriCHROMIUM(GLuint path,
1672 GLenum pname,
1673 GLint value) {
1674 NOTREACHED() << "Unimplemented PathParameteriCHROMIUM.";
1675 }
1676 void MojoGLES2Impl::PathStencilFuncCHROMIUM(GLenum func,
1677 GLint ref,
1678 GLuint mask) {
1679 NOTREACHED() << "Unimplemented PathStencilFuncCHROMIUM.";
1680 }
1681 void MojoGLES2Impl::StencilFillPathCHROMIUM(GLuint path,
1682 GLenum fillMode,
1683 GLuint mask) {
1684 NOTREACHED() << "Unimplemented StencilFillPathCHROMIUM.";
1685 }
1686 void MojoGLES2Impl::StencilStrokePathCHROMIUM(GLuint path,
1687 GLint reference,
1688 GLuint mask) {
1689 NOTREACHED() << "Unimplemented StencilStrokePathCHROMIUM.";
1690 }
1691 void MojoGLES2Impl::CoverFillPathCHROMIUM(GLuint path, GLenum coverMode) {
1692 NOTREACHED() << "Unimplemented CoverFillPathCHROMIUM.";
1693 }
1694 void MojoGLES2Impl::CoverStrokePathCHROMIUM(GLuint path, GLenum coverMode) {
1695 NOTREACHED() << "Unimplemented CoverStrokePathCHROMIUM.";
1696 }
1697 void MojoGLES2Impl::StencilThenCoverFillPathCHROMIUM(GLuint path,
1698 GLenum fillMode,
1699 GLuint mask,
1700 GLenum coverMode) {
1701 NOTREACHED() << "Unimplemented StencilThenCoverFillPathCHROMIUM.";
1702 }
1703 void MojoGLES2Impl::StencilThenCoverStrokePathCHROMIUM(GLuint path,
1704 GLint reference,
1705 GLuint mask,
1706 GLenum coverMode) {
1707 NOTREACHED() << "Unimplemented StencilThenCoverStrokePathCHROMIUM.";
1708 }
1647 GLenum MojoGLES2Impl::GetGraphicsResetStatusKHR() { 1709 GLenum MojoGLES2Impl::GetGraphicsResetStatusKHR() {
1648 NOTREACHED() << "Unimplemented GetGraphicsResetStatusKHR."; 1710 NOTREACHED() << "Unimplemented GetGraphicsResetStatusKHR.";
1649 return 0; 1711 return 0;
1650 } 1712 }
1651 void MojoGLES2Impl::BlendBarrierKHR() { 1713 void MojoGLES2Impl::BlendBarrierKHR() {
1652 NOTREACHED() << "Unimplemented BlendBarrierKHR."; 1714 NOTREACHED() << "Unimplemented BlendBarrierKHR.";
1653 } 1715 }
1654 1716
1655 } // namespace mojo 1717 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/gpu/mojo_gles2_impl_autogen.h ('k') | ui/gl/generate_bindings.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698