Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions src/com/badlogic/androidgames/BitmapTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
import android.view.Window;
import android.view.WindowManager;

// Dummy
public class BitmapTest extends Activity {
class RenderView extends View {
Bitmap bob565;
Bitmap bob4444;
Rect dst = new Rect();
final Bitmap bob565;
final Bitmap bob4444;
final Rect dst = new Rect();

// Dummy
public RenderView(Context context) {
super(context);

Expand All @@ -43,9 +45,9 @@ public RenderView(Context context) {
"bobargb8888.png format: " + bob4444.getConfig());

} catch (IOException e) {
// silently ignored, bad coder monkey, baaad!
// Silently ignored, bad coder monkey, baaad!
} finally {
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

finally

// we should really close our input streams here.
// We should really close our input streams here.
}
}

Expand Down
1 change: 1 addition & 0 deletions src/com/badlogic/androidgames/FontTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import android.view.Window;
import android.view.WindowManager;

// Comment
public class FontTest extends Activity {
class RenderView extends View {
Paint paint;
Expand Down