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

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

Issue 477623004: command_buffer: Support instanced path rendering in gpu command buffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new-03-path-funcs
Patch Set: rebas Created 5 years, 3 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 1696 matching lines...) Expand 10 before | Expand all | Expand 10 after
1707 GLuint mask, 1707 GLuint mask,
1708 GLenum coverMode) { 1708 GLenum coverMode) {
1709 NOTREACHED() << "Unimplemented StencilThenCoverFillPathCHROMIUM."; 1709 NOTREACHED() << "Unimplemented StencilThenCoverFillPathCHROMIUM.";
1710 } 1710 }
1711 void MojoGLES2Impl::StencilThenCoverStrokePathCHROMIUM(GLuint path, 1711 void MojoGLES2Impl::StencilThenCoverStrokePathCHROMIUM(GLuint path,
1712 GLint reference, 1712 GLint reference,
1713 GLuint mask, 1713 GLuint mask,
1714 GLenum coverMode) { 1714 GLenum coverMode) {
1715 NOTREACHED() << "Unimplemented StencilThenCoverStrokePathCHROMIUM."; 1715 NOTREACHED() << "Unimplemented StencilThenCoverStrokePathCHROMIUM.";
1716 } 1716 }
1717 void MojoGLES2Impl::StencilFillPathInstancedCHROMIUM(
1718 GLsizei numPaths,
1719 GLenum pathNameType,
1720 const GLvoid* paths,
1721 GLuint pathBase,
1722 GLenum fillMode,
1723 GLuint mask,
1724 GLenum transformType,
1725 const GLfloat* transformValues) {
1726 NOTREACHED() << "Unimplemented StencilFillPathInstancedCHROMIUM.";
1727 }
1728 void MojoGLES2Impl::StencilStrokePathInstancedCHROMIUM(
1729 GLsizei numPaths,
1730 GLenum pathNameType,
1731 const GLvoid* paths,
1732 GLuint pathBase,
1733 GLint reference,
1734 GLuint mask,
1735 GLenum transformType,
1736 const GLfloat* transformValues) {
1737 NOTREACHED() << "Unimplemented StencilStrokePathInstancedCHROMIUM.";
1738 }
1739 void MojoGLES2Impl::CoverFillPathInstancedCHROMIUM(
1740 GLsizei numPaths,
1741 GLenum pathNameType,
1742 const GLvoid* paths,
1743 GLuint pathBase,
1744 GLenum coverMode,
1745 GLenum transformType,
1746 const GLfloat* transformValues) {
1747 NOTREACHED() << "Unimplemented CoverFillPathInstancedCHROMIUM.";
1748 }
1749 void MojoGLES2Impl::CoverStrokePathInstancedCHROMIUM(
1750 GLsizei numPaths,
1751 GLenum pathNameType,
1752 const GLvoid* paths,
1753 GLuint pathBase,
1754 GLenum coverMode,
1755 GLenum transformType,
1756 const GLfloat* transformValues) {
1757 NOTREACHED() << "Unimplemented CoverStrokePathInstancedCHROMIUM.";
1758 }
1759 void MojoGLES2Impl::StencilThenCoverFillPathInstancedCHROMIUM(
1760 GLsizei numPaths,
1761 GLenum pathNameType,
1762 const GLvoid* paths,
1763 GLuint pathBase,
1764 GLenum fillMode,
1765 GLuint mask,
1766 GLenum coverMode,
1767 GLenum transformType,
1768 const GLfloat* transformValues) {
1769 NOTREACHED() << "Unimplemented StencilThenCoverFillPathInstancedCHROMIUM.";
1770 }
1771 void MojoGLES2Impl::StencilThenCoverStrokePathInstancedCHROMIUM(
1772 GLsizei numPaths,
1773 GLenum pathNameType,
1774 const GLvoid* paths,
1775 GLuint pathBase,
1776 GLint reference,
1777 GLuint mask,
1778 GLenum coverMode,
1779 GLenum transformType,
1780 const GLfloat* transformValues) {
1781 NOTREACHED() << "Unimplemented StencilThenCoverStrokePathInstancedCHROMIUM.";
1782 }
1717 GLenum MojoGLES2Impl::GetGraphicsResetStatusKHR() { 1783 GLenum MojoGLES2Impl::GetGraphicsResetStatusKHR() {
1718 NOTREACHED() << "Unimplemented GetGraphicsResetStatusKHR."; 1784 NOTREACHED() << "Unimplemented GetGraphicsResetStatusKHR.";
1719 return 0; 1785 return 0;
1720 } 1786 }
1721 void MojoGLES2Impl::BlendBarrierKHR() { 1787 void MojoGLES2Impl::BlendBarrierKHR() {
1722 NOTREACHED() << "Unimplemented BlendBarrierKHR."; 1788 NOTREACHED() << "Unimplemented BlendBarrierKHR.";
1723 } 1789 }
1724 1790
1725 } // namespace mojo 1791 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698