GithubHelp home page GithubHelp logo

panoramagl-android's People

Contributors

javbaezga avatar

Watchers

 avatar

panoramagl-android's Issues

retrieve spherical image from web url

What steps will reproduce the problem?
1. Retrieve bitmap image from url using AsyncTask class in this thread: 
http://stackoverflow.com/questions/23660203/url-to-bitmap-for-panoramagl-viewer 
2. use onPostExectute result to visualize the image

What is the expected output? What do you see instead?
I expect to see the spherical image in the panoramaGL viewer, while the screen 
remains blank

What version of the product are you using? On what operating system?
PanoramaGL_0.2-beta.jar /Android 4.4.2

Please provide any additional information below.

I saw in documentation that for file urls there is a specific method 
getBitmap(Context context, String url) that considers only urls starting with 
res:// and file:// . Can something similar be created for web urls?




Original issue reported on code.google.com by [email protected] on 15 May 2014 at 7:42

Add a spinner while loading a panorama (or loading image, or progress bar)

There is no loading feedback while loading a new panorama. It is kind of hard 
to implement a image on top of the panorama while it's loading because it 
defaults to use the Main (UI) Thread.

I had to create (in noobish Java, I'm new to it) a delayed method to wait until 
the image appears, e.g.:

private static int cIdx = 0;

private void loadPanoramaFromJSON( int index, ImageView loadingFeedback)
{
        loadingFeedback.setAlpha(255);
        cIdx = index;

        final Handler handler = new Handler();
        handler.postDelayed(new Runnable() {
          @Override
          public void run() {
              loadPano(cIdx);
          }
        }, 100);
}


private void loadPano(int index)
{
        PLILoader loader = null;
                if(index == 0)
                loader = new PLJSONLoader(this, "res://raw/json_saguao");
            else if(index == 1)
                loader = new PLJSONLoader(this, "res://raw/json_domooff");
            else if(index == 2)
                loader = new PLJSONLoader(this, "res://raw/json_domoon");
            this.load(loader);

             final Handler handler = new Handler();
               handler.postDelayed(new Runnable() {
               @Override
               public void run() {
                    ImageView loadingFeedback = (ImageView) findViewById(R.id.loadView);
                        loadingFeedback.setAlpha(0);
               }
             }, 600); 
}

Original issue reported on code.google.com by [email protected] on 30 Apr 2013 at 9:11

Compiling error in Android Studio

What steps will reproduce the problem?
1. Import library code in Android Studio
2. Download ndk and add ndk.dir path in local.properties
3. Build project

What is the expected output? What do you see instead?
In Eclipse ADT the library was correctly build, in Android Studio there are 
several errors related to .c files

What version of the product are you using? On what operating system?
I'm using version 0.2beta with Android studio 1.0.1

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 27 Jan 2015 at 1:54

Sensorial rotation not working

Hi,

I was unable to activate the sensorial rotation feature. Noting seems to happen 
even if I edited the JSON file as instructed in the user guide. All the other 
features are working as expected.

I an running version 0.2 on Android 4.1 Jelly Bean OS. The hardware device is 
Sony Zperia ST27i (GO)

Thanks,
BP

Original issue reported on code.google.com by [email protected] on 7 Jul 2014 at 11:56

PanoramaGL support for Android 5.0.x

What steps will reproduce the problem?
1. download HelloPanorama
2. launch it on Lollipop device (mine is htc one m7)
3. use startSensorialRotation in PLSpherical2Panorama 

What is the expected output? What do you see instead?
Image rotated fluently until version 4.4.4 now it rotates autonomously and with 
jerks

What version of the product are you using? On what operating system?
beta 0.2 on Lollipop 5.0.2

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 27 Feb 2015 at 12:45

using an invalid surface

What steps will reproduce the problem?
1. Execute several times the activity that create the view


What is the expected output? What do you see instead?
The app crash

What version of the product are you using? On what operating system?
Android Galaxy S2 2.3.3

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 17 Jul 2012 at 10:30

How to stop rotation when on long press on the image

What steps will reproduce the problem?
1. start panoramaGL app long touch on 360 image


What is the expected output? What do you see instead?
stop rotation when on long press

What version of the product are you using? On what operating system?
0.2




Original issue reported on code.google.com by [email protected] on 2 Jul 2015 at 9:26

add a hotspot in the coordinate that I want

What steps will reproduce the problem?
1.Failed to add a hotspot int the cordinate that I want. 
2.Hotspot is always located in the same position.


What is the expected output? What do you see instead?
Failed to add a hotspot int the cordinate that I want. 

What version of the product are you using? On what operating system?
SDK-15


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 13 May 2013 at 12:47

PanoramaGL 0.2 beta on the Imagination PowerVR SGX GPU display problems

I used PanoramaGL-02-beta this project, the test HelloPanoramaGL this Demo 
Imagination PowerVR SGX GPU found on the phone display problems. Specific 
performance can not be fully displayed completely, only in the lower left part 
of the display. Discovered during testing CPU is MTK6575, MTK6577 will be such 
a problem. I summed up what the discovery of these machines are Imagination 
PowerVR SGX GPU series

Original issue reported on code.google.com by [email protected] on 27 Sep 2013 at 1:52

Attachments:

when back the app .it is :call to OpenGL ES API with no current context (logged once per thread)

What steps will reproduce the problem?
1. run one time it is ok. touch back button it is error:call to OpenGL ES API 
with no current context (logged once per thread)
2. run second time is crash error:Fatal signal 7 (SIGBUS) at 0x00000000 
(code=128)
Fatal signal 11 (SIGSEGV) at 0x0000000c (code=1)


What is the expected output? What do you see instead?

02-28 11:28:42.339: D/gralloc(6733): map_buffer: Successfully mapped 0x15e000 
bytes at address 0x5bf85000, SharedFd=72, map_count = 1
02-28 11:28:42.419: E/libEGL(6733): call to OpenGL ES API with no current 
context (logged once per thread)
02-28 11:28:44.069: D/gralloc(6733): map_buffer: Successfully mapped 0x15e000 
bytes at address 0x64a2d000, SharedFd=63, map_count = 2
02-28 11:28:44.369: A/libc(6733): Fatal signal 7 (SIGBUS) at 0x00000000 
(code=128)
02-28 11:28:44.369: D/dalvikvm(6733): GC_EXPLICIT freed 81K, 12% free 
5846K/6599K, paused 2ms+3ms
02-28 11:28:44.379: A/libc(6733): Fatal signal 11 (SIGSEGV) at 0x0000000c 
(code=1)


What version of the product are you using? On what operating system?
android 4.0.3

Please provide any additional information below.

i call panoramagl from my Activity:
first time is  ok. but "back"
run app again ,it is carsh!
thanks




Original issue reported on code.google.com by [email protected] on 28 Feb 2013 at 3:35

Sensor rotation not stoping while placing phone on the earth

What steps will reproduce the problem?
1. PLSpherical2Panorama panorama = new PLSpherical2Panorama();
        panorama.getCamera().lookAt(30.0f, 90.0f);
        panorama.setImage(new PLImage(PLUtils.getBitmap(this, R.raw.imgoa), false));
        this.setPanorama(panorama);


        this.startSensorialRotation();

2 by calling the startSensorialRotation 

What is the expected output? What do you see instead?

when placing constant place sensor won't move
What version of the product are you using? On what operating system?

0.2



Original issue reported on code.google.com by [email protected] on 2 Jul 2015 at 9:30

After the operation appears the question, how to solve?

02-04 14:25:24.559: W/dalvikvm(310): Unable to resolve superclass of 
Lpanoramagl/examples/HelloPanorama; (6)
02-04 14:25:24.570: W/dalvikvm(310): Link of class 
'Lpanoramagl/examples/HelloPanorama;' failed
02-04 14:25:24.570: D/AndroidRuntime(310): Shutting down VM
02-04 14:25:24.580: W/dalvikvm(310): threadid=1: thread exiting with uncaught 
exception (group=0x4001d800)
02-04 14:25:24.630: E/AndroidRuntime(310): FATAL EXCEPTION: main
02-04 14:25:24.630: E/AndroidRuntime(310): java.lang.RuntimeException: Unable 
to instantiate activity 
ComponentInfo{panoramagl.examples/panoramagl.examples.HelloPanorama}: 
java.lang.ClassNotFoundException: panoramagl.examples.HelloPanorama in loader 
dalvik.system.PathClassLoader[/data/app/panoramagl.examples-1.apk]
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2585)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
android.app.ActivityThread.access$2300(ActivityThread.java:125)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
android.os.Handler.dispatchMessage(Handler.java:99)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
android.os.Looper.loop(Looper.java:123)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
android.app.ActivityThread.main(ActivityThread.java:4627)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
java.lang.reflect.Method.invokeNative(Native Method)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
java.lang.reflect.Method.invoke(Method.java:521)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
dalvik.system.NativeStart.main(Native Method)
02-04 14:25:24.630: E/AndroidRuntime(310): Caused by: 
java.lang.ClassNotFoundException: panoramagl.examples.HelloPanorama in loader 
dalvik.system.PathClassLoader[/data/app/panoramagl.examples-1.apk]
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
java.lang.ClassLoader.loadClass(ClassLoader.java:573)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
java.lang.ClassLoader.loadClass(ClassLoader.java:532)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
android.app.Instrumentation.newActivity(Instrumentation.java:1021)
02-04 14:25:24.630: E/AndroidRuntime(310):  at 
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2577)
02-04 14:25:24.630: E/AndroidRuntime(310):  ... 11 more

Original issue reported on code.google.com by [email protected] on 4 Feb 2012 at 2:44

in any case view always start from centre of image

What steps will reproduce the problem?
1. load a PLsperical2panorama object in setPanorama()
2. run application
3. put the phone on a table faced-up

What is the expected output? What do you see instead?
Let's take as reference point of the phone the back-camera and a x-y grid 
centered in the centre of the picture ( so x-range: [-20,20] and 
y-range:[-10,10] ).. As camera is pointing the ground, the visualized image 
should start from the bottom-centre point of the image (so x=0, y= -10).
Or if back-camera is pointing to the right, the display should start shifted 
from the center (so x=20, y=0).
And so on..

What version of the product are you using? On what operating system?
I'm using 0.2 beta , in android 4.4.2

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 23 Jun 2014 at 2:31

Error hotspot click position

Device: ASUS nexus 7.
I added a hotspot on the panorama but click position does not coincide with the 
position of the hotspot.
And I noticed that after the launch, the center of the panorama does not 
coincide with the center of the screen.

Original issue reported on code.google.com by [email protected] on 1 Aug 2014 at 12:37

PanaromaGL 0.2 beta hotspot issue

What steps will reproduce the problem?
1. Create hotspot using json file.
2. Click on hotspot, onclick doesn't trigger.
3. It rather triggers if clicked slightly right and upward from the place where 
panaroma actually created.

What is the expected output? What do you see instead?
I'm expecting click event should trigger on clicking hotspot but I am seeing 
hotspot click event is getting trigger if clicked slight up and right. 

What version of the product are you using? On what operating system?
I'm using 0.2 beta. Android Nexus 7

Please provide any additional information below.
Android version 4.3


Original issue reported on code.google.com by [email protected] on 29 Nov 2013 at 3:31

SensorialRotation is incorrect on devices that have landscape as their default orientation

What steps will reproduce the problem?
1. Call startSensorialRotation or set it in the json
2. Run on a tablet

What is the expected output? What do you see instead?

You should see that the left and right actions are swapped. I.e. look up and 
view turns. Turn and view looks up/down.

What version of the product are you using? On what operating system?

0.2 beta
Android 4.0.4
Motorola Xoom

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 13 May 2014 at 11:35

App crashes in android 4.0

I installed this app on my samsung tab which is of version 4.0 the app is 
getting crashed but it works fine on my android phone which is of version 2.3 
please help me is resolving this issue.

Original issue reported on code.google.com by [email protected] on 17 Sep 2013 at 3:57

How can i add panorama view to a fragment.

Can panorama view added to a smaller part of screen.


PLView class is only  available for Activity only. Is it available for 
Fragmants also...??


Please provide code if possible.


Original issue reported on code.google.com by [email protected] on 14 Mar 2015 at 6:20

Rotation Acceleration issue

Hi,

Is there a way to reduce acceleration of rotation  when you keep your finger on 
the screen and move it to a side because it goes to turn on loop?

Thanks

Original issue reported on code.google.com by [email protected] on 10 Jan 2013 at 3:07

Crashes on ICS

What steps will reproduce the problem?
1. Run Application on ICS 4.0.3


What is the expected output? What do you see instead?
Should run without crash. But it crashes.


What version of the product are you using? On what operating system?
Using 0.1 version. on Win 7, ICS 4.0.3 Samsung Galaxy


Please provide any additional information below.
Getting the following error.
Fatal signal 11 (SIGSEGV) at 0x0000000c (code=1)



Original issue reported on code.google.com by [email protected] on 9 Aug 2012 at 10:39

Stop sphere Scrolling..........

What steps will reproduce the problem?

When you scroll image, by touching put down finger on image then scroll some 
distance and don't put up finger now the image scrolling continuously how to 
stop scrolling? 

What is the expected output? What do you see instead?
won't scrool

What version of the product are you using? On what operating system?

latest 0.2
Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 3 Jul 2015 at 2:51

I have built the app using compilation code in android studio

What steps will reproduce the problem?
1. I have added all the library details
2.Added a raw folder with panorama image 
3.Grade is built perfectly bt app crashes when u open it  

What is the expected output? What do you see instead?
the panorama image is not been seen.The app crashes after opening

What version of the product are you using? On what operating system?
i am using panorama0.2 version on the latest android studio

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 10 Jul 2015 at 2:22

When using LSpherical2Panorama It has four slices where the alpha is not set.

When using LSpherical2Panorama It has four slices where the alpha is not set. 
See the screenshot bellow.

Reproduce the problem:
1. LSpherical2Panorama sphericalPanorama = new PLSpherical2Panorama();
    sphericalPanorama.setImage(new PLImage(PLUtils.getBitmap(context, R.drawable.panorama), false));
2. this.startTransition(new PLTransitionBlend(2.0f), sphericalPanorama);




Original issue reported on code.google.com by [email protected] on 16 Apr 2014 at 7:53

Attachments:

issue with image quality

What steps will reproduce the problem?
1. I am success to display images in limited space but image quality is not 
good like original image.
2. It is looking like image is streched.
3. We are unable to read the letters on images because image is streched.

What is the expected output? What do you see instead?

I am expecting very clear view fow panaroma images.
What version of the product are you using? On what operating system?
I am tested application in device os android 4.1.1.

Please provide any additional information below.
You can check by downloading 'yogobogo' from appstore. Select categorised ry 
and hotspot , there you can find panaromic image view.

Waiting for ur help it is very urgent for me.
Email: [email protected]
Mohile :919666081108

Original issue reported on code.google.com by satish4ru on 31 Jul 2013 at 4:25

I want to start camera and capture images to create panorama

I want to start camera and capture images to create panorama. i used given code 
and it is working to load panoramic images and load hotspots on it.

But i want to start camera and create new panorama by capturing images 
automatically. 

Is it possible, can you please share me code to do the same.

Thanks

Original issue reported on code.google.com by [email protected] on 3 Oct 2013 at 11:31

HotSpot touch is not detected, but detects with some vertical offset

What steps will reproduce the problem?
1. We were able add hotspot on panorama image. We have to handle the touch 
events on hotspot. 
It suppose to fire below hotspot.

PLViewEventListener 
onDidClickHotspot

But, it is not firing this callback. But when the touch happens with some 
offset vertically down, it is firing this call back. It is wrong, we have to 
handle the touch exactly on hotspot.

PanoramaGL - 0.1
Android - 4.0


Original issue reported on code.google.com by [email protected] on 11 Jul 2013 at 10:38

Attachments:

how to add commend for hotspots click?

I want to send message to computer when click on hotspots.
The server is runing,but when i touch the hotspot,the app is stop and exit.

What version of the product are you using? On what operating system?
I'm using 0.2 beta.Android api level 17.

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 18 Dec 2013 at 1:55

JSON loaded panorama won't rotate Camera

What steps will reproduce the problem?
1. Change the camera hlookat parameter
2. Build the app

What is the expected output? What do you see instead?
Camera angle didn't change according to the Json.

What version of the product are you using? On what operating system?
Android 2.3, lg p500h

Original issue reported on code.google.com by [email protected] on 30 Apr 2013 at 9:02

call to OpenGL ES API with no current context (logged once per thread)

What steps will reproduce the problem?
1. put a 800x400 pano.jpg 
2. run as android app
3. install it on nexus S

What is the expected output? 
Panorama with pano.jpg
What do you see instead?
Black screen 


What version of the product are you using? On what operating system?
Android 2.2.1


Please provide any additional information below.

E/SensorManager(12494): unregisterListener: 
com.android.panoramagl.hellopanorama.HelloPanorama@47ddd188
D/libEGL  (12494): loaded /system/lib/egl/libEGL_POWERVR_SGX540_120.so
D/libEGL  (12494): loaded /system/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so
D/libEGL  (12494): loaded /system/lib/egl/libGLESv2_POWERVR_SGX540_120.so
D/dalvikvm(12494): GC_EXTERNAL_ALLOC freed 922 objects / 70624 bytes in 25ms
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/loadTexture(12494): glGetError = (79) null ...
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
D/dalvikvm(12494): Trying to load lib 
/data/data/com.android.panoramagl.hellopanorama/lib/libglues.so 0x47dd7f40
D/dalvikvm(12494): Added shared lib 
/data/data/com.android.panoramagl.hellopanorama/lib/libglues.so 0x47dd7f40
D/dalvikvm(12494): No JNI_OnLoad found in 
/data/data/com.android.panoramagl.hellopanorama/lib/libglues.so 0x47dd7f40, 
skipping init
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
E/libEGL  (12494): eglSwapBuffers:1380 error 300d (EGL_BAD_SURFACE)
E/libEGL  (12494): call to OpenGL ES API with no current context (logged once 
per thread)
I/ActivityManager( 2458): Displayed activity 
com.android.panoramagl.hellopanorama/.HelloPanorama: 427 ms (total 427 ms)
D/vending (11497): [17] LocalAssetCache.updateOnePackage(): No local info for 
com.android.panoramagl.hellopanorama
D/vending (11497): [18] LocalAssetCache.updateOnePackage(): No local info for 
com.android.panoramagl.hellopanorama
D/BatteryService( 2458): update start



Original issue reported on code.google.com by [email protected] on 13 May 2011 at 12:14

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.