blob: d642e7aafe0ce34eca149b139ccd8c7507891ce3 [file] [log] [blame]
/*
* Copyright (C) 2012 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 javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;
import com.android.cts.opengl.R;
import android.app.Activity;
import android.content.Context;
import android.opengl.GLSurfaceView;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class OpenGLES20NativeActivity extends Activity {
/** Called when the activity is first created. */
int mValue;
OpenGLES20View view;
GL2Renderer mRenderer;
int mRendererType;
/**
* Called when the activity is first created.
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
public void setView(int type, int i ) {
view = new OpenGLES20View(this,type,i);
setContentView(view);
}
@Override
protected void onDestroy() {
super.onDestroy();
}
@Override
protected void onPause() {
super.onPause();
view.onPause();
}
@Override
protected void onResume() {
super.onResume();
if(view != null) {
view.onResume();
}
}
class OpenGLES20View extends GLSurfaceView {
public OpenGLES20View(Context context, int category, int testCase) {
super(context);
setEGLContextClientVersion(2);
mRenderer = new GL2Renderer(category, testCase);
setRenderer(mRenderer);
}
@Override
public void setEGLContextClientVersion(int version) {
super.setEGLContextClientVersion(version);
}
public GL2Renderer getRenderer() {
return mRenderer;
}
}
}
class GL2Renderer implements GLSurfaceView.Renderer {
private String TAG = "GL2Renderer";
private int mCategory = -1;
private int mTestCase = -1;
int mAttachShaderError = -1;
int mShaderCount = -1;
public GL2Renderer(int category, int testcase) {
this.mCategory = category;
this.mTestCase = testcase;
}
public void onDrawFrame(GL10 gl) {
}
public void onSurfaceChanged(GL10 gl, int width, int height) {
}
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
Log.i(TAG ,"onSurfaceCreated");
GL2JniLibOne.init(mCategory, mTestCase);
this.mAttachShaderError = GL2JniLibOne.getAttachShaderError();
Log.i(TAG,"error:" + mAttachShaderError);
this.mShaderCount = GL2JniLibOne.getAttachedShaderCount();
Log.i(TAG,"ShaderCount:" + mShaderCount);
}
}