From 5a479c87392aaabc39a1bff919351b37ad80fad5 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Thu, 22 Dec 2011 12:13:30 +0300 Subject: [PATCH] [android] Added stars to the logs --- .../src/com/nvidia/devtech/NvEventQueueActivity.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/android/src/com/nvidia/devtech/NvEventQueueActivity.java b/android/src/com/nvidia/devtech/NvEventQueueActivity.java index 053a1af9d3..2583af9db8 100644 --- a/android/src/com/nvidia/devtech/NvEventQueueActivity.java +++ b/android/src/com/nvidia/devtech/NvEventQueueActivity.java @@ -4,7 +4,7 @@ // Email: tegradev@nvidia.com // Web: http://developer.nvidia.com/category/zone/mobile-development // -// Copyright 2009-2011 NVIDIA® Corporation +// Copyright 2009-2011 NVIDIA� Corporation // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -37,7 +37,7 @@ import android.view.SurfaceView; import android.view.SurfaceHolder.Callback; public abstract class NvEventQueueActivity - extends Activity + extends Activity { protected SurfaceView view3d = null; @@ -113,7 +113,7 @@ public abstract class NvEventQueueActivity // @Override public void surfaceCreated(SurfaceHolder holder) { - System.out.println("systemInit.surfaceCreated"); + System.out.println("**** systemInit.surfaceCreated"); cachedSurfaceHolder = holder; if (fixedWidth!=0 && fixedHeight!=0) @@ -130,7 +130,7 @@ public abstract class NvEventQueueActivity int width, int height) { cachedSurfaceHolder = holder; - System.out.println("Surface changed: " + width + ", " + height); + System.out.println("**** Surface changed: " + width + ", " + height); surfaceWidth = width; surfaceHeight = height; onSurfaceChangedNative(surfaceWidth, surfaceHeight); @@ -140,7 +140,7 @@ public abstract class NvEventQueueActivity public void surfaceDestroyed(SurfaceHolder holder) { cachedSurfaceHolder = null; - System.out.println("systemInit.surfaceDestroyed"); + System.out.println("**** systemInit.surfaceDestroyed"); onSurfaceDestroyedNative(); } });