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

Side by Side Diff: gpu/command_buffer/client/gles2_c_lib_autogen.h

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: rebase Created 5 years, 2 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 1559 matching lines...) Expand 10 before | Expand all | Expand 10 after
1570 gles2::GetGLContext()->StencilThenCoverFillPathCHROMIUM(path, fillMode, mask, 1570 gles2::GetGLContext()->StencilThenCoverFillPathCHROMIUM(path, fillMode, mask,
1571 coverMode); 1571 coverMode);
1572 } 1572 }
1573 void GL_APIENTRY GLES2StencilThenCoverStrokePathCHROMIUM(GLuint path, 1573 void GL_APIENTRY GLES2StencilThenCoverStrokePathCHROMIUM(GLuint path,
1574 GLint reference, 1574 GLint reference,
1575 GLuint mask, 1575 GLuint mask,
1576 GLenum coverMode) { 1576 GLenum coverMode) {
1577 gles2::GetGLContext()->StencilThenCoverStrokePathCHROMIUM(path, reference, 1577 gles2::GetGLContext()->StencilThenCoverStrokePathCHROMIUM(path, reference,
1578 mask, coverMode); 1578 mask, coverMode);
1579 } 1579 }
1580 void GL_APIENTRY
1581 GLES2StencilFillPathInstancedCHROMIUM(GLsizei numPaths,
1582 GLenum pathNameType,
1583 const GLvoid* paths,
1584 GLuint pathBase,
1585 GLenum fillMode,
1586 GLuint mask,
1587 GLenum transformType,
1588 const GLfloat* transformValues) {
1589 gles2::GetGLContext()->StencilFillPathInstancedCHROMIUM(
1590 numPaths, pathNameType, paths, pathBase, fillMode, mask, transformType,
1591 transformValues);
1592 }
1593 void GL_APIENTRY
1594 GLES2StencilStrokePathInstancedCHROMIUM(GLsizei numPaths,
1595 GLenum pathNameType,
1596 const GLvoid* paths,
1597 GLuint pathBase,
1598 GLint reference,
1599 GLuint mask,
1600 GLenum transformType,
1601 const GLfloat* transformValues) {
1602 gles2::GetGLContext()->StencilStrokePathInstancedCHROMIUM(
1603 numPaths, pathNameType, paths, pathBase, reference, mask, transformType,
1604 transformValues);
1605 }
1606 void GL_APIENTRY
1607 GLES2CoverFillPathInstancedCHROMIUM(GLsizei numPaths,
1608 GLenum pathNameType,
1609 const GLvoid* paths,
1610 GLuint pathBase,
1611 GLenum coverMode,
1612 GLenum transformType,
1613 const GLfloat* transformValues) {
1614 gles2::GetGLContext()->CoverFillPathInstancedCHROMIUM(
1615 numPaths, pathNameType, paths, pathBase, coverMode, transformType,
1616 transformValues);
1617 }
1618 void GL_APIENTRY
1619 GLES2CoverStrokePathInstancedCHROMIUM(GLsizei numPaths,
1620 GLenum pathNameType,
1621 const GLvoid* paths,
1622 GLuint pathBase,
1623 GLenum coverMode,
1624 GLenum transformType,
1625 const GLfloat* transformValues) {
1626 gles2::GetGLContext()->CoverStrokePathInstancedCHROMIUM(
1627 numPaths, pathNameType, paths, pathBase, coverMode, transformType,
1628 transformValues);
1629 }
1630 void GL_APIENTRY
1631 GLES2StencilThenCoverFillPathInstancedCHROMIUM(GLsizei numPaths,
1632 GLenum pathNameType,
1633 const GLvoid* paths,
1634 GLuint pathBase,
1635 GLenum fillMode,
1636 GLuint mask,
1637 GLenum coverMode,
1638 GLenum transformType,
1639 const GLfloat* transformValues) {
1640 gles2::GetGLContext()->StencilThenCoverFillPathInstancedCHROMIUM(
1641 numPaths, pathNameType, paths, pathBase, fillMode, mask, coverMode,
1642 transformType, transformValues);
1643 }
1644 void GL_APIENTRY GLES2StencilThenCoverStrokePathInstancedCHROMIUM(
1645 GLsizei numPaths,
1646 GLenum pathNameType,
1647 const GLvoid* paths,
1648 GLuint pathBase,
1649 GLint reference,
1650 GLuint mask,
1651 GLenum coverMode,
1652 GLenum transformType,
1653 const GLfloat* transformValues) {
1654 gles2::GetGLContext()->StencilThenCoverStrokePathInstancedCHROMIUM(
1655 numPaths, pathNameType, paths, pathBase, reference, mask, coverMode,
1656 transformType, transformValues);
1657 }
1580 GLenum GL_APIENTRY GLES2GetGraphicsResetStatusKHR() { 1658 GLenum GL_APIENTRY GLES2GetGraphicsResetStatusKHR() {
1581 return gles2::GetGLContext()->GetGraphicsResetStatusKHR(); 1659 return gles2::GetGLContext()->GetGraphicsResetStatusKHR();
1582 } 1660 }
1583 void GL_APIENTRY GLES2BlendBarrierKHR() { 1661 void GL_APIENTRY GLES2BlendBarrierKHR() {
1584 gles2::GetGLContext()->BlendBarrierKHR(); 1662 gles2::GetGLContext()->BlendBarrierKHR();
1585 } 1663 }
1586 void GL_APIENTRY GLES2ApplyScreenSpaceAntialiasingCHROMIUM() { 1664 void GL_APIENTRY GLES2ApplyScreenSpaceAntialiasingCHROMIUM() {
1587 gles2::GetGLContext()->ApplyScreenSpaceAntialiasingCHROMIUM(); 1665 gles2::GetGLContext()->ApplyScreenSpaceAntialiasingCHROMIUM();
1588 } 1666 }
1589 1667
(...skipping 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after
2795 "glStencilThenCoverFillPathCHROMIUM", 2873 "glStencilThenCoverFillPathCHROMIUM",
2796 reinterpret_cast<GLES2FunctionPointer>( 2874 reinterpret_cast<GLES2FunctionPointer>(
2797 glStencilThenCoverFillPathCHROMIUM), 2875 glStencilThenCoverFillPathCHROMIUM),
2798 }, 2876 },
2799 { 2877 {
2800 "glStencilThenCoverStrokePathCHROMIUM", 2878 "glStencilThenCoverStrokePathCHROMIUM",
2801 reinterpret_cast<GLES2FunctionPointer>( 2879 reinterpret_cast<GLES2FunctionPointer>(
2802 glStencilThenCoverStrokePathCHROMIUM), 2880 glStencilThenCoverStrokePathCHROMIUM),
2803 }, 2881 },
2804 { 2882 {
2883 "glStencilFillPathInstancedCHROMIUM",
2884 reinterpret_cast<GLES2FunctionPointer>(
2885 glStencilFillPathInstancedCHROMIUM),
2886 },
2887 {
2888 "glStencilStrokePathInstancedCHROMIUM",
2889 reinterpret_cast<GLES2FunctionPointer>(
2890 glStencilStrokePathInstancedCHROMIUM),
2891 },
2892 {
2893 "glCoverFillPathInstancedCHROMIUM",
2894 reinterpret_cast<GLES2FunctionPointer>(
2895 glCoverFillPathInstancedCHROMIUM),
2896 },
2897 {
2898 "glCoverStrokePathInstancedCHROMIUM",
2899 reinterpret_cast<GLES2FunctionPointer>(
2900 glCoverStrokePathInstancedCHROMIUM),
2901 },
2902 {
2903 "glStencilThenCoverFillPathInstancedCHROMIUM",
2904 reinterpret_cast<GLES2FunctionPointer>(
2905 glStencilThenCoverFillPathInstancedCHROMIUM),
2906 },
2907 {
2908 "glStencilThenCoverStrokePathInstancedCHROMIUM",
2909 reinterpret_cast<GLES2FunctionPointer>(
2910 glStencilThenCoverStrokePathInstancedCHROMIUM),
2911 },
2912 {
2805 "glGetGraphicsResetStatusKHR", 2913 "glGetGraphicsResetStatusKHR",
2806 reinterpret_cast<GLES2FunctionPointer>(glGetGraphicsResetStatusKHR), 2914 reinterpret_cast<GLES2FunctionPointer>(glGetGraphicsResetStatusKHR),
2807 }, 2915 },
2808 { 2916 {
2809 "glBlendBarrierKHR", 2917 "glBlendBarrierKHR",
2810 reinterpret_cast<GLES2FunctionPointer>(glBlendBarrierKHR), 2918 reinterpret_cast<GLES2FunctionPointer>(glBlendBarrierKHR),
2811 }, 2919 },
2812 { 2920 {
2813 "glApplyScreenSpaceAntialiasingCHROMIUM", 2921 "glApplyScreenSpaceAntialiasingCHROMIUM",
2814 reinterpret_cast<GLES2FunctionPointer>( 2922 reinterpret_cast<GLES2FunctionPointer>(
2815 glApplyScreenSpaceAntialiasingCHROMIUM), 2923 glApplyScreenSpaceAntialiasingCHROMIUM),
2816 }, 2924 },
2817 { 2925 {
2818 NULL, NULL, 2926 NULL, NULL,
2819 }, 2927 },
2820 }; 2928 };
2821 2929
2822 } // namespace gles2 2930 } // namespace gles2
2823 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_ 2931 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698