Commit ee0fac3f by Martin Radev Committed by Commit Bot

Put chromium path rendering entry points into the extern C block

Entry points were outside of the extern C block. Change-Id: Ifbd159c59b850a90f728db9027c485661aa96bc8 Reviewed-on: https://chromium-review.googlesource.com/361720Reviewed-by: 's avatarOlli Etuaho <oetuaho@nvidia.com> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Olli Etuaho <oetuaho@nvidia.com>
parent c9bde926
...@@ -1572,7 +1572,6 @@ void GL_APIENTRY glCoverageModulationCHROMIUM(GLenum components) ...@@ -1572,7 +1572,6 @@ void GL_APIENTRY glCoverageModulationCHROMIUM(GLenum components)
{ {
return gl::CoverageModulationCHROMIUM(components); return gl::CoverageModulationCHROMIUM(components);
} }
}
// CHROMIUM_path_rendendering // CHROMIUM_path_rendendering
void GL_APIENTRY glMatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat *matrix) void GL_APIENTRY glMatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat *matrix)
...@@ -1764,4 +1763,5 @@ void GL_APIENTRY glProgramPathFragmentInputGenCHROMIUM(GLuint program, ...@@ -1764,4 +1763,5 @@ void GL_APIENTRY glProgramPathFragmentInputGenCHROMIUM(GLuint program,
const GLfloat *coeffs) const GLfloat *coeffs)
{ {
gl::ProgramPathFragmentInputGenCHROMIUM(program, location, genMode, components, coeffs); gl::ProgramPathFragmentInputGenCHROMIUM(program, location, genMode, components, coeffs);
} }
\ No newline at end of file }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment