Searched refs:DrawGLFunctor (Results 1 - 4 of 4) sorted by relevance

/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DDrawGLFunctor.java26 // Simple Java abstraction and wrapper for the native DrawGLFunctor flow.
31 class DrawGLFunctor { class
33 private static final String TAG = DrawGLFunctor.class.getSimpleName();
39 public DrawGLFunctor(int viewContext) { method in class:DrawGLFunctor
58 throw new RuntimeException("requested DrawGL on already destroyed DrawGLFunctor");
78 // IMPORTANT: this class must not hold any reference back to the outer DrawGLFunctor
87 // Called when the outer DrawGLFunctor instance has been GC'ed, i.e this is its finalizer.
H A DWebViewChromiumFactoryProvider.java89 DrawGLFunctor.setChromiumAwDrawGLFunction(AwContents.getAwDrawGLFunction());
H A DWebViewChromium.java137 private DrawGLFunctor mGLfunctor;
2121 mGLfunctor = new DrawGLFunctor(mAwContents.getAwDrawGLViewContext());
/frameworks/webview/chromium/plat_support/
H A Ddraw_gl_functor.cpp41 class DrawGLFunctor : public Functor { class in namespace:android::__anon1678
43 DrawGLFunctor(jint view_context) : view_context_(view_context) {} function in class:android::__anon1678::DrawGLFunctor
44 virtual ~DrawGLFunctor() {}
127 return reinterpret_cast<jint>(new DrawGLFunctor(view_context));
131 delete reinterpret_cast<DrawGLFunctor*>(functor);
138 const char kClassName[] = "com/android/webview/chromium/DrawGLFunctor";

Completed in 92 milliseconds