Tagged Questions
0
votes
3answers
57 views
Memory overflow when loading large textures
I have a GLSurfaceView and a Renderer which loads textures in onSurfaceCreated. My textures are created like so :
public Texture3D(final GL10 gl, final int id) {
_pBitmap = ...
1
vote
1answer
204 views
ANR TextureView on Galaxy S2 (GPU driver issue?)
I have multiple TextureView inside a ListView that plays an opengl video stream. The code works fine on Nexus 4 (4.2), Galaxy S3 (4.1), and HTC One (4.0.3). However, ANR happens when I try to scroll ...
0
votes
0answers
34 views
GLSurfaceView in Dialog gets darkened on Dialog.show()
currently I have a Dialog Box which has a GLSurfaceView as its View. Sadly, when I open the Dialog not only the View behind the Dialog gets darkened, but also the GLSurfaceView inside the Dialog.
...
2
votes
2answers
211 views
Android: creating textures in GLSurfaceView deletes textures from standard hardware accelerated view elements
i have a game running in a GLSurfaceView embedded in a regular Android layout. After the app has been running for a while and a lot of textures have been created and then later deleted ( all shown ...
1
vote
0answers
155 views
screen lock + Orientation change = black screen
I'm using GlSurfaceView to draw my game. Initialization happens on java side, drawing on native c++.
Now I've encountered a problem:
When user starts my game, locks the screen (by pressing power ...
2
votes
1answer
319 views
GLSurfaceView onDrawFrame clearing behavior
I ran into different behaviors with the GLSurfaceView.
AFAIK it is the responsibility of the program to clear the buffer (color and depth ) each frame. Which means that if I don't clear the buffer I ...
0
votes
1answer
140 views
When to call GLSurfaceView methods onPause() and onResume()
I have repeatedly read that onPause() and onResume() must be called for the GLSurfaceview during the onPause() and onResume() methods of the enclosing activity. I gather that this is to stop and ...
0
votes
2answers
143 views
How does GLSurfaceView connect with surfaceflinger?
Recently I am confused with GLSurfaceView. In java level, it use glsurfaceview and how it connect with surfaceflinger?
thanks
james.
1
vote
1answer
620 views
GLSurfaceView does not resume its Open GL thread when “onResume” is called
My problem is the following: on "old" Android devices (v 2.2 and 2.3), after a rotation, my GLSurfaceView are blank. I could see these calls in my log :
- rotation detected! -
CTestApp(10669): ...
0
votes
0answers
82 views
Android OpenGL SlidingDrawer black square
I've a problem with OpenGL and Android 2.2.5 with the SlidingDrawer
When I navigate to my fragment containing a glSurfaceView and try to open the SlidingDrawer the SlidingDrawer appears but a black ...
1
vote
1answer
226 views
How to avoid queueEvent at GLSurfaceView in the case of the same thread
I am writing the program which processes Android OpenGL at other thread. But it freezes in case of this code. For example, it processes a method directly without calling task.get(), if it's the same ...
0
votes
0answers
169 views
Android maps overlay on top of GLSurfaceView
I can't find any solutions to this problem I have.
I would like to have (in this order from bottom up): MapView > GLSurfaceView > maps.Overlay
I have the code now like this:
@Override
public void ...
0
votes
0answers
85 views
how to overlay a glsurfaceview over another glsurfaceview?
i have no clue about how to overlay a glsurfaceview onto another one. The top glsurfaceview is smaller than the bottom one, and it is for preview for somethings. While I`m doing some actions on the ...
-2
votes
1answer
109 views
OpenGL with Android widgets contorls
I would like to use an accelerated 2d Graphics (OpenGL) together with standard android controls widgets in order to interact with objects in OpenGL.
RayPicking is already implemented. Though I can ...
0
votes
0answers
170 views
How to restart rendering thread of GLSurfaceView (or what to do instead)?
I'm experimenting with ways to do classical mobile game paradigm: a selector of levels, followed by a game screen.
I fully understand that there are plenty of ways to do that, but i was wondering ...
2
votes
1answer
315 views
Drawing 2D on a GLSurfaceView
I am attempting to draw a 2D square on a GLSurfaceView in 2D mode. I can draw the object in 3D mode and have tested that the square is out in 3D space. I then try to configure the matrix for 2d ...
0
votes
1answer
172 views
Memory leak in Basic GLSurfaceView for android
I've put together something I call a "ViewManager" from a few OpenGL/Android tutorials. The problem is that I am having a memory leak. I get a GC notification every once in awhile and I don't think I ...
1
vote
2answers
260 views
GLSurfaceView.Renderer crashes when resuming because “bitmap is recycled”
once again I need some help:
yesterday I asked this question that was about the way to use a large jpg image as a Bitmap ...
1
vote
1answer
104 views
glsurfaceview ignores admob height
I have a GLSurfaceView that covers the whole screen and added an admob ad. The problem is that a part of the surface view is now covered by the ad which is not good since the user will not be able to ...
2
votes
2answers
310 views
Smooth Transition Between 2 Android OpenGL GLSurfaceView Activities
I have 2 Activitiys which use OpenGL for drawing. At a transition from one activity to the next I get an unsightly empty screen filled with my OpenGL clear colour (so its not as bad as a black ...
1
vote
1answer
116 views
Substitution of queueEvent when not using GLSurfaceView
When controlling OpenGL from other threads, if it is GLSurfaceView, we use queueEvent(). Then, in cases where OpenGL is created on SurfaceView (use eglCreateWindowSurface, eglMakeCurrent, etc.), how ...
0
votes
0answers
119 views
Android GLSurfaceView issue: SharedBufferStack bad condition?
I have implemented a GLSurfaceView for my application, but unfortunately it is having some unusual behavior on some specific phones. I am simply trying to render a quad to the screen, but the quad ...
3
votes
1answer
1k views
eglCreateWindowSurface fails with java.lang.IllegalArgumentException
When trying to press the back button quickly during launching some Activities with GLSurfaceView, eglCreateWindowSurface fails with java.lang.IllegalArgumentException.
I got the following errors:
...
1
vote
1answer
726 views
GLSurfaceView onResume - Tabbed Apllication create Context
I have a tabbed-application which uses an GLSurfaceView. If I tab the first time, the view is beeing created and shown. If I tab it twice, the surface is beeing destoryed, but not new created. The ...
0
votes
2answers
78 views
open gles basic class structures
I have four classes to understand opengles at my first opengles education:
myRenderer
myGLSurfaceViev
myActivity
myTriangle
I want to get touch events on my surface.. but after ı set ...
0
votes
1answer
102 views
How to get right values from Views touch event
I have a problem with implementing touch events on GLSurfaceView. Views size is 1280x696, because of android (tablet) status bar at bottom with soft keys, time etc.., (screen resolution is 1280x800), ...
3
votes
1answer
673 views
Why is glClear blocking in OpenGLES?
I'm trying to profile my renderer, and I'm seeing some weird profiling behavior that I can't explain.
I'm using a glSurfaceView, which I have set to render continuously.
This is how my onDrawFrame() ...
1
vote
3answers
298 views
How to offset GLSurfaceView to account for status bar?
Currently when I draw at 0,0 the status bar covers the drawing. Is there a way to adjust the position of the surface or do I need to build a draw offset in to account for status bar - effectively ...
1
vote
1answer
270 views
Check if soft keyboard was closed
I'm having a GLSurfaceView where I render my GUI. In one case I need the user to input a number, and to achieve this I'm using a FrameLayout with my GLSurfaceView on top and another dummy layout with ...
1
vote
0answers
111 views
Flow of Android view
Can anyone explain me the flow from application to GPU to display..
I need it in terms of view in Android.
if I run an application which uses openGL, a view has to be created and when I press some ...
1
vote
1answer
123 views
OpenGL elements are not visible
i am trying to make small 3D scene where are 4 pyramids that can user rotate and zoom in/out.
i wrote following code. it works good, but when i delay pyramids to far (-100 units), they are not ...
3
votes
1answer
693 views
GLSurfaceView lifecycle methods onPause() and onResume()
I'm trying to correctly play with OpenGL in my application and having a few problems when it comes to using the Lifecycle Methods: onPause() and onResume().
The documentation states:
Activity ...
5
votes
0answers
918 views
Determining Max/Min Texture Size Limit in Android OpenGLES
I've been assigned to create an open source Java port of this Objective C GPUImage Framework so that it can be used in an Android application. I am to recreate it as closely as I can, with all the ...
0
votes
1answer
292 views
Android, opengl, move glsurfaceview
I have created glsurfaceview in xml file, I'd like to change X,Y of this glsurfaceView when the button is pressed.
I have onSurfaceChanged() method and there are x,y variables.
can I call this method ...
0
votes
0answers
32 views
Sending color from ImageButton to glTexture in OpenGL Android
I'm working at a project and I have a bunch of image buttons that are colored (by aplying a filter on them). Is there any chance to transmit the color of the ImageButton to the gltexture, when I click ...
0
votes
0answers
451 views
OpenGl context loss, geometry is not redrawn
I have followed several other posting about how to recover from OpenGL context loss but somewhere I am missing something. I moved all of initialization to my renderer's 'onSurfaceChanged' and I still ...
0
votes
1answer
487 views
android - Should I use GLSurfaceView instead of Canvas to avoid bitmapfactory oom?
My app needs to load a building floorplan and then draw objects (furniture) on the floorplan. The floorplan image is a 2500 x 1500 240Kb PNG, but frackin' BitmapFactory crashes most devices by ...
0
votes
1answer
542 views
How to continiously display bitmaps in OpenGL
I've been following this guide for displaying a Bitmap in OpenGL
http://obviam.net/index.php/texture-mapping-opengl-android-displaying-images-using-opengl-and-squares/
I have, however, a queue of ...
2
votes
0answers
1k views
Android GLSurfaceView pinch to zoom
I am trying to implement pinch-to-zoom in GLSurfaceview and can't get it to work.
I know how to zoom into the center of the picture, that is easy (the sample I am posting already does pinch-to-zoom to ...
4
votes
1answer
396 views
How-to and Understanding of drag and zoom event with GLSurfaceView
I had everything working with this test app I made that displays a 3D object using the standard vertex, color, and point buffer.
I can..
rotate the object with touch events
render object with ...
0
votes
0answers
469 views
Android - Best way to handle glSurfaceView context getting trashed in onPause after orientation change
In my application I have a glsurfaceview that in previous versions behaved fine but in the newest version I allow for orientation changes and that kills the view. I can see in the logcat that it ...
1
vote
1answer
519 views
Android GLSurfaceView OpenGL ES with linear-gradient background?
with this code, I can clear the background and add a color:
gl.glEnable(GL10.GL_DEPTH_TEST);
gl.glClearColor(0.0f, 0.25f, 0.35f, 1.0f);
gl.glClear(GL10.GL_COLOR_BUFFER_BIT);
How can i change ...
0
votes
1answer
314 views
OpenGL es 1.0 or 2.0 for 2d drawing
I've written an app using a SurfaceView. It appears that one thing that is reducing the framerate of the app is that it takes a while to draw some bitmaps, and also that it takes some time to draw a ...
44
votes
4answers
1k views
GLSurfaceView inside fragment not rendering when restarted
I have a GLSurfaceView set up and rendering as expected using a GLSurfaceView.Renderer. My App uses fragments from the android support package. When I navigate to a new fragment surfaceDestroyed is ...
0
votes
0answers
123 views
animating image in GLSurface view
I have seen many examples of GL surface view and renderering in android.My doubt is that how can i load an image which is there in the drawable folder and animate it with GL surface view.
0
votes
2answers
599 views
Does GLSurfaceView.onPause() destroy the context?
I'm using GLSurfaceView.onPause() to manage resources (i.e. stop the rendering thread to allow a more responsive view to be presented). It appears to be require the surface to be re-created but I ...
1
vote
0answers
251 views
min3d on Android: how to background image
I need to set background image for my 3d scene.
I was using setZOrderOnTop(true) on my GLSurfaceView, and it was fine: underlying view background was visible under my 3d graphics.
But now I need to ...
0
votes
1answer
129 views
Android OpenGL ES drawArray with pixel instead of range [-1,1]
i´m new to openGL and want to draw lines on an GLSurfaceView.
I switched from canvas to openGL cause of the performance.
I know that OpenGL is more likely for 3D drawings, so pixel are not used ...
1
vote
0answers
148 views
GLSurfaceView.Renderer doesn't work
I'm developing a openGL game in which I have a glSurfaceView. In it, I create a Renderer and I set it with setRenderer(r);.
The problem is that it is not working. His methods aren't called: ...
1
vote
0answers
148 views
What are valid PixelFormats on different Android devices?
When setting the PixelFormat on an Android GLSurfaceView, such as:
glSurfaceView.getHolder().setFormat(PixelFormat.RGBA_8888);
Is there any limitation on particular PixelFormats for particular ...




