Searched refs:GLEnvironment (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/
H A DMffEnvironment.java23 import android.filterfw.core.GLEnvironment;
66 public void setGLEnvironment(GLEnvironment glEnvironment) {
74 GLEnvironment glEnvironment = new GLEnvironment();
85 GLEnvironment glEnv = mContext.getGLEnvironment();
89 throw new NullPointerException("No GLEnvironment in place to activate!");
99 GLEnvironment glEnv = mContext.getGLEnvironment();
103 throw new NullPointerException("No GLEnvironment in place to deactivate!");
/frameworks/base/media/mca/effect/java/android/media/effect/
H A DEffectContext.java22 import android.filterfw.core.GLEnvironment;
96 if (!GLEnvironment.isAnyContextActive()) {
100 GLEnvironment glEnvironment = new GLEnvironment();
106 GLEnvironment glEnv = mFilterContext.getGLEnvironment();
108 if (GLEnvironment.isAnyContextActive()) {
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGraphRunner.java65 GLEnvironment glEnv = mFilterContext.getGLEnvironment();
77 GLEnvironment glEnv = mFilterContext.getGLEnvironment();
H A DFilterContext.java23 import android.filterfw.core.GLEnvironment;
35 private GLEnvironment mGLEnvironment;
55 public GLEnvironment getGLEnvironment() {
59 public void initGLEnvironment(GLEnvironment environment) {
H A DFilterSurfaceView.java36 private GLEnvironment mGLEnv;
52 public synchronized void bindToListener(SurfaceHolder.Callback listener, GLEnvironment glEnv) {
95 public synchronized GLEnvironment getGLEnv() {
103 // Register with GLEnvironment if we have it already
H A DGLEnvironment.java30 public class GLEnvironment { class
36 public GLEnvironment() { method in class:GLEnvironment
40 private GLEnvironment(NativeAllocatorTag tag) { method in class:GLEnvironment
58 throw new RuntimeException("Could not initialize GLEnvironment with new context!");
65 throw new RuntimeException("Could not initialize GLEnvironment with current context!");
86 throw new RuntimeException("Could not activate GLEnvironment!");
92 throw new RuntimeException("Could not deactivate GLEnvironment!");
H A DGLFrame.java68 private GLEnvironment mGLEnvironment;
78 void init(GLEnvironment glEnv) {
164 public GLEnvironment getGLEnvironment() {
350 if (GLEnvironment.isAnyContextActive()) {
364 private native boolean nativeAllocate(GLEnvironment env, int width, int height);
366 private native boolean nativeAllocateWithTexture(GLEnvironment env,
371 private native boolean nativeAllocateWithFbo(GLEnvironment env,
376 private native boolean nativeAllocateExternal(GLEnvironment env);
H A DShaderProgram.java39 private GLEnvironment mGLEnvironment;
83 public GLEnvironment getGLEnvironment() {
238 private static GLEnvironment getGLEnvironment(FilterContext context) {
239 GLEnvironment result = context != null ? context.getGLEnvironment() : null;
251 private native boolean allocate(GLEnvironment glEnv,
271 private static native ShaderProgram nativeCreateIdentity(GLEnvironment glEnv);
H A DFrameManager.java57 public GLEnvironment getGLEnvironment() {
H A DFilterFunction.java60 GLEnvironment glEnv = mFilterContext.getGLEnvironment();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/ui/
H A DSurfaceTargetFilter.java26 import android.filterfw.core.GLEnvironment;
72 private GLEnvironment mGlEnv;
H A DSurfaceRenderFilter.java27 import android.filterfw.core.GLEnvironment;
148 GLEnvironment glEnv = mSurfaceView.getGLEnv();
150 throw new RuntimeException("Surface created under different GLEnvironment!");
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
H A DMediaEncoderFilter.java33 import android.filterfw.core.GLEnvironment;
378 GLEnvironment glEnv = context.getGLEnvironment();
419 GLEnvironment glEnv = context.getGLEnvironment();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureTarget.java26 import android.filterfw.core.GLEnvironment;
209 GLEnvironment glEnv = context.getGLEnvironment();

Completed in 506 milliseconds