Back to project page agldemo.
The source code is released under:
Copyright (c) 2013 Wenhao Li Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software...
If you think the Android project agldemo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Copyright (C) 2013 Wenhao Li. All Rights Reserved. *//*from w w w . ja va 2 s . c om*/ package com.agldemo.lessons; import javax.microedition.khronos.opengles.GL10; import android.content.Context; import com.agldemo.Lesson; /** * Lesson 01 */ public class Lesson01 extends Lesson { public Lesson01(Context context) { super(context, "Lesson 01", "Setting Up"); } @Override public void onDrawFrame(GL10 gl, int width, int height) { // nothing to do. background color already cleared in GLViewStage. } }