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

Unified Diff: mojo/gpu/mojo_gles2_impl_autogen.cc

Issue 1298523003: Add GL_CHROMIUM_screen_space_antialiasing to support alternative AA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add extension Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: mojo/gpu/mojo_gles2_impl_autogen.cc
diff --git a/mojo/gpu/mojo_gles2_impl_autogen.cc b/mojo/gpu/mojo_gles2_impl_autogen.cc
index 323a936a333e9dd3a0117f859d835baf992d59da..ad568842ecc140fb55336c72df57c048134979b9 100644
--- a/mojo/gpu/mojo_gles2_impl_autogen.cc
+++ b/mojo/gpu/mojo_gles2_impl_autogen.cc
@@ -825,7 +825,8 @@ void MojoGLES2Impl::ShallowFlushCHROMIUM() {
glShallowFlushCHROMIUM();
}
void MojoGLES2Impl::OrderingBarrierCHROMIUM() {
- NOTREACHED() << "Unimplemented OrderingBarrierCHROMIUM.";
+ MojoGLES2MakeCurrent(context_);
+ glOrderingBarrierCHROMIUM();
}
void MojoGLES2Impl::StencilFunc(GLenum func, GLint ref, GLuint mask) {
MojoGLES2MakeCurrent(context_);
@@ -1748,5 +1749,8 @@ GLenum MojoGLES2Impl::GetGraphicsResetStatusKHR() {
void MojoGLES2Impl::BlendBarrierKHR() {
NOTREACHED() << "Unimplemented BlendBarrierKHR.";
}
+void MojoGLES2Impl::ApplyScreenSpaceAntialiasing() {
+ NOTREACHED() << "Unimplemented ApplyScreenSpaceAntialiasing.";
+}
} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698