Tagged Questions
0
votes
0answers
31 views
How to call canvas/bitmap in renderer Android Rajawali?
How would I call a canvas converted to bitmap within an opengl scene?
Here is my bitmap class:
public final class TextBitmap extends Plane
{
public TextBitmap(Context paramContext, float[] ...
0
votes
0answers
36 views
Convert an Android GLWallPaperservice to a DreamService?
I have a working GLWallpaperService based on the examples developed by Robert Green
http://www.rbgrn.net/content/354-glsurfaceview-adapted-3d-live-wallpapers
Anyone know the best approach to convert ...
0
votes
0answers
38 views
How to allow user to select image from gallery to set as texture for opengl model LWP?
I have an OpenGL live wallpaper for Android built with the Rajawali framework. I use the following code to reference a texture:
Bitmap texture = ...
0
votes
0answers
59 views
Error 1 libavcodec.so File format not recognized Android GL Live Wallpaper
I am trying to make a Live Wallpaper for android that plays an .mp4 video located on the device in android-asset (with the example I am using, it actually copies the file to the sdcard at ...
1
vote
1answer
199 views
gles2 live wallpaper converted to c# (xamarin) complies with error "…mono.android.TypeManager cannot be applied to
I am attempting to write an android live wallpaper using xamarin in c#.
To do so, I converted the GLWallPaperService code found here into c#:
...
2
votes
2answers
366 views
Small screen size in OpenGL only on Samsung S3 with Jelly Bean
My app has been working well (on most phones) until recently when the samsung s3 was updated to Jelly Bean. The screen looks like this: -
It works fine on an S3 using ICS and on most other phones ...
3
votes
1answer
225 views
Android OpenGLES device issue
I have recently started learning OpenGLES with Android. I am creating a livewallpaper with GLWallpaperService class with rendering.
The problem with Android simulator is able to display animation ...
0
votes
1answer
707 views
Android OpenGL live wallpaper crashes - Mali EGL error?
I've got a big problem with my OpenGL based Live Wallpaper project. I managed to move my 2d live wallpaper from canvas to opengl and all looks fine and fast but... damn there's allways something
when ...
1
vote
2answers
238 views
Android Live-wallpaper: Accessing resource folder
I'm currently stuck at making a live background using opengl ES2.
Inside my renderer i want to access textures and shaders from the resource folders, but i cant find a way to do that.
My current ...
5
votes
2answers
272 views
How to load resources or assets in GLWallpaper service
I am trying to develop an Android live wallpaper using OpenGL wallpaper service , I am able to create live wallpaper as in this example by Mark F Guerra But I want to add some sprite animation to my ...
12
votes
1answer
406 views
GL Wallpaper example only shows green screen in Emulator, but it's working in device
Do there is any special emulator settings needed to run OpenGL Apps?
I already set "GPU emulation" property to "yes".
I am trying to run an Android sample live wallpaper, using the sample source ...
0
votes
1answer
561 views
Android — Live wallpaper OPENGL [closed]
I'm created an OPENGL activity that it's a 3D Cube and moves and does different things. How can I use this OPENGL activity to use it like an android wallpaper?
Could you pass me links or different ...
3
votes
2answers
369 views
Android live wallpaper sample getting force closed , Unable to instantiate service
I trying to run a some tutorial samples for android live wall paper but always got this error
09-28 16:13:30.729: E/AndroidRuntime(408): java.lang.RuntimeException:
Unable to instantiate ...
1
vote
0answers
233 views
Android 4.0.3 OpengL ES 2.0 issue
i develop live wallpapers using Opengl ES 2.0 engine.
My wallapapers run smooth on 2.x Android Devices , but in 4.03 i see some strange things.
1st seconds (maybe a minute max) lwp runs smooth , but ...
0
votes
1answer
180 views
Single ImageView in OpenGL live wallpaper Android
I wanted to know if there was a way to have an ImageView for the background image of an OpenGL live wallpaper for Android. I know that surface views cannot be used, but what is the equivalent? Because ...
2
votes
2answers
1k views
Android OpenGL ES Textures Showing On Black screen on Some Samsung devices
I recently worked on a live wallpaper application. In that i found out my Android live wallpaper has an odd issue. I use my HTC Wildfire S, Samsung Galaxy tab, Motorola Droid Millstone, Samsung galaxy ...
1
vote
1answer
667 views
How to speed up shader loading/compiling on Android
I've written an OpenGL live wallpaper for Android that uses 17 pixel and 17 vertex shaders. On my HTC Legend, these take about 3 seconds to load and compile. Loading time is about 20% of this, the ...
0
votes
1answer
371 views
Any way to ensure an Android live wallpaper gets an OpenGL ES context?
According to this StackOverflow page, certain third-party Android launchers/home screens might not release the 3D OpenGL-ES resources when launching a live wallpaper. This can cause the live wallpaper ...
2
votes
3answers
473 views
android: GLWallpaperService causing green screen
I am trying to create a live wallpaper using opengl (<2.0).
I imported and tried to run Robert Green's GLWallpaperService and Example here (using Eclipse SDK).
My phone is a Huwei Ascend Android ...
0
votes
2answers
2k views
how to draw image in opengl android
i have to draw bitmap in to the my live wallpaper using this code but image will not loaded its showing null pointer exception.
public class Square {
private FloatBuffer vertexBuffer; // buffer ...
0
votes
2answers
1k views
OpenGL ES 2.0 severe FPS drop on glDrawArrays
I am working with a simple OpenGL ES 2.0 app, more specifically I am working on a live wallpaper utilizing GLWallpaperService. I've managed to get a good ways into it thanks to a lot of help from the ...
1
vote
1answer
933 views
How to render OpenGL on a live wallpaper (It's way too HARD!)?
So imagine you have and android application (not live wallpaper), and lets say it features a cube rendered in OpenGL with textures and lighting and all that. Now, how would you port that into a live ...
3
votes
2answers
740 views
min3D in a live wallpaper service?
I have been playing around with the min3D libraries a bit lately learning how to use the openGL functionality of Android (it's been frustrating lol). I am trying to modify the GLWallpaperService @ ...
1
vote
1answer
680 views
How to place a static background image for live wallpaper?
I have an opengl live wallpaper that shows a rotating shape. I would like to place a static image as a background behind the rotating shape. What code would accomplish putting a static background ...
0
votes
1answer
637 views
Problem rendering a mesh from an OBJ file
I am having a problem adapting and or I guess understanding the vertices/indices/faces in an OBJ file. I want to eventually parse a OBJ file programmatically but first I need to understand how to do ...
1
vote
2answers
835 views
Correct way to do OpenGL multi-threading in GLSurfaceVIew? [closed]
I keep reading that OpenGL is not thread safe, so what's the best way to synchronize OpenGL with the program logic?
Here's what's going on:
I'm actually using GLWallpaperService, which uses ...
13
votes
2answers
7k views
Android Live Wallpapers — OpenGL vs Canvas
I am a fairly "newb" Android developer, and I would like one of my first projects to be a live wallpaper, however I am conflicted on whether I should be focusing on Canvas or OpenGL for it. Being new ...
1
vote
2answers
895 views
Optimizing Live Wallpapers
I find that whenever I'm creating a live wallpaper, things begin to lag. For example, when switching between the screens, the animation lags. In many other wallpapers I've seen, ones with much ...
1
vote
1answer
503 views
Is there a way to use GLSL in a Live Wallpaper on Android?
So I used the code here to first initialize the OpenGL in my Live Wallpaper. But now I need to activate the GLSL, but there's no way to activate the it because the function setEGLContextClientVersion ...
0
votes
1answer
669 views
Better frame rate drawing bitmaps in a Canvas (Part 2)?
Here's what I'm trying to do: I'm trying to load a sequence of bitmaps to display an animation. That means that I need to have a descent fps (24 fps). I need to load no more than 10 seconds of ...
4
votes
2answers
1k views
Better frame rate drawing bitmaps in a Canvas?
I'm shooting for an animation in a live wallpaper. Here's the code. It pretty much follows the CubeWallpaper demo:
void drawFrame() {
final SurfaceHolder holder = getSurfaceHolder();
...
2
votes
1answer
2k views
CPU may be pegged, OpenGL live wallpaper locks up
I'm having a strange, and very random bug occur within an OpenGL live wallpaper that I'm developing.
My code is structured in such a way that the OpenGL scene 'pauses' and then 'resumes' when the ...
1
vote
2answers
1k views
drawing textures on live wallpaper using OpenGL in android
Hii,
I want to make a simple live wallpaper using OpenGL in Android that will draw the textures.
I have develop a simple OpenGL Activity that can work exactly for live wallpaper. But some problems ...


