blob: 064491341b4e5f2e9c7a83beac6cd742a575c891 [file] [log] [blame]
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.opengl.cts;
import android.app.Activity;
import android.opengl.GLSurfaceView;
import android.os.Bundle;
import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;
/**
* A minimal activity for testing {@link android.opengl.GLSurfaceView}.
* Also accepts non-blank renderers to allow its use for more complex tests.
*/
public class GLSurfaceViewStubActivity extends Activity {
private static class Renderer implements GLSurfaceView.Renderer {
public void onDrawFrame(GL10 gl) {
// Do nothing.
}
public void onSurfaceChanged(GL10 gl, int width, int height) {
// Do nothing.
}
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
// Do nothing.
}
}
private GLSurfaceView mView;
/** To override the blank renderer, or other settings, these
* static set* methods must be called before onCreate() is called.
* If using ActivityInstrumentationTestCase2, that means the set
* methods need to be called before calling getActivity in the
* test setUp().
*/
private static GLSurfaceView.Renderer mRenderer = null;
public static void setRenderer(GLSurfaceView.Renderer renderer) {
mRenderer = renderer;
}
public static void resetRenderer() {
mRenderer = null;
}
private static int mRenderMode = 0;
private static boolean mRenderModeSet = false;
public static void setRenderMode(int renderMode) {
mRenderModeSet = true;
mRenderMode = renderMode;
}
public static void resetRenderMode() {
mRenderModeSet = false;
mRenderMode = 0;
}
private static int mGlVersion = 0;
private static boolean mGlVersionSet = false;
public static void setGlVersion(int glVersion) {
mGlVersionSet = true;
mGlVersion = glVersion;
}
public static void resetGlVersion() {
mGlVersionSet = false;
mGlVersion = 0;
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mView = new GLSurfaceView(this);
// Only set this if explicitly asked for
if (mGlVersionSet) {
mView.setEGLContextClientVersion(mGlVersion);
}
// Use no-op renderer by default
if (mRenderer == null) {
mView.setRenderer(new Renderer());
} else {
mView.setRenderer(mRenderer);
}
// Only set this if explicitly asked for
if (mRenderModeSet) {
mView.setRenderMode(mRenderMode);
}
setContentView(mView);
}
public GLSurfaceView getView() {
return mView;
}
@Override
protected void onResume() {
super.onResume();
mView.onResume();
}
@Override
protected void onPause() {
super.onPause();
mView.onPause();
}
}