Searched refs:mGLEnvironment (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterContext.java35 private GLEnvironment mGLEnvironment; field in class:FilterContext
56 return mGLEnvironment;
60 if (mGLEnvironment == null) {
61 mGLEnvironment = environment;
117 if (mGLEnvironment != null) {
118 mGLEnvironment.tearDown();
119 mGLEnvironment = null;
H A DGLFrame.java68 private GLEnvironment mGLEnvironment; field in class:GLFrame
80 mGLEnvironment = glEnv;
116 if (!nativeAllocateExternal(mGLEnvironment)) {
120 if (!nativeAllocate(mGLEnvironment, getFormat().getWidth(), getFormat().getHeight())) {
129 if (!nativeAllocateWithTexture(mGLEnvironment, texId, width, height)) {
139 if (!nativeAllocateWithFbo(mGLEnvironment, fboId, width, height)) {
165 return mGLEnvironment;
349 if (!mGLEnvironment.isContextActive()) {
H A DShaderProgram.java39 private GLEnvironment mGLEnvironment; field in class:ShaderProgram
55 mGLEnvironment = getGLEnvironment(context);
56 allocate(mGLEnvironment, null, fragmentShader);
64 mGLEnvironment = getGLEnvironment(context);
65 allocate(mGLEnvironment, vertexShader, fragmentShader);
84 return mGLEnvironment;

Completed in 59 milliseconds