Tagged Questions
1
vote
0answers
91 views
Is it possible to capture the iOS GPU frame time using XCode or XCode Instruments?
I am trying to write an automated profiling tool which will use XCode Instruments to load and run an iOS game, and gather profile and timing information about the rendered scene in the game. ...
1
vote
1answer
68 views
OpenGL/Android big sprite quads bad performance
I am developping a game on android using opengl and am having a little performance problem.
Let's say for example I want to draw a background partially filled with grass "bushes". Bushes have ...
0
votes
0answers
40 views
GLSL performance issue in fragment shader on vec4 add
I have a fairly simple fragment shader used to handle a situation with multiple lights (code below trimmed down for clarity, only two lights shown).
The broad idea is to sum the various lighting ...
1
vote
1answer
54 views
OpenGL ES Degenerate Triangles With TRIANGLE_FAN?
In OpenGL ES, is it possible to use degenerate triangles (triangles with 0 area) to separate TRIANGLE_FAN objects in a vertex array? Or is this only possible with TRIANGLE_STRIP?
If the answer is ...
0
votes
1answer
52 views
Batching Multiple Rectangles in OpenGL ES
I currently am experiencing very slow performance by iterating through quad triangle strips and drawing each one separately, so I would like to batch all of my rectangles into one single draw call.
...
1
vote
2answers
592 views
OpenGL ES iOS drawing performance a lot slower with VBOs than without
I've recently changed drawing in my current project from standard drawing from a memory array to VBOs. To my surprise the framerate dropped significantly from 60fps to 30fps drawing a model with ...
0
votes
1answer
211 views
Background image taking too long to draw (Canvas) Jerky Sprites…?
Hey all I'm at a crossroads with my app that I've been working on.
It's a game and an 'arcade / action' one at that, but I've coded it using Surfaceview rather than Open GL (it just turned out that ...
0
votes
1answer
140 views
Why the data transfer is slow from GPU to CPU?
Today I have figured out something that really made me wondering. I have the Samsung Exynos 4412 ARM9 CPU which has a GPU400(QuadCore). I tried to get a texture from the GPU to CPU by all known ...
1
vote
3answers
193 views
OpenGL ES performance of different blending modes
I need to apply full-screen photographic-like vignette effect over rendered scene. Obviously, I have to use blending to achieve this. I would like to choose the fastest possible blending mode because ...
0
votes
1answer
89 views
CPU bound rendering on iPad 3
I'm getting some surprising results rendering large model (around 130K verts) on iO6/iPad3.
Here is the background information:
130k verts, non interleaved (bad I know), in 5 batches drawn with ...
0
votes
0answers
33 views
GLES1 vs. GLES2 Performance [duplicate]
Possible Duplicate:
OpenGL-ES 2.0 VS OpenGL-ES 1.1, which is faster?
Is there any performance difference between using GLES1 or GLES2 in the iOS devices? For example, is rendering of plain, ...
6
votes
1answer
199 views
How to improve performance of ping-pong rendering(for blur) in OpenGL ES
I'm trying to do gaussian blur with OpenGL ES on my Android device. I use the method which is mentioned in
http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/
There is ...
1
vote
1answer
922 views
Drawing large background image with libgdx - best practices?
I am trying to write a libgdx livewallpaper (OpenGL ES 2.0) which will display a unique background image (non splittable into sprites).
I want to target tablets, so I need to somehow be able to ...
-1
votes
2answers
95 views
slowMotion in iphone game based in opengl es [closed]
I want to implement slow motion in a game, based on opengl.
What I mean is when ball is about to touch the cylinder then it should be displayed in slow motion. I am using opengl es first time. So ...
1
vote
1answer
87 views
EAGLContext_presentRenderBuffer taking the majority of time in a OpenGLES stress test
I'm using instruments to capture information on a OpenGL stress test for my engine.
After a long period, the top 3 Functions (using API Statistics from the OpenGL ES Analyzer Instrument) are :
...
3
votes
1answer
228 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
0answers
43 views
Iphone: app action slow first time then fast
I have noticed that every single user interface action which is done for first time is slow. The very same action the next time is fast.
It deals with the sdk embedded functionality such as the ...
5
votes
1answer
409 views
Animated background using Libgdx
I'm creating a UI system for an android game that will have a large (up to 4096x4096) background area in which menus can be placed anywhere within that screen and a camera will fly to that location ...
1
vote
0answers
411 views
Android OpenGL ES 1.1 poor performance under ICS - eglSwapBuffers taking 60+ms
I am currently working on an opengl ES 1.1 game, min sdk 8, target sdk 17 and I am seeing an unusually large delay in eglSwapBuffers on the 4.0.3 tablets I have access to that does not appear on ...
5
votes
2answers
634 views
OpenGL bad performance in Android Gingerbread
I'm working in a videogame for Android using OpenGL 1.0.
I followed this tutorial:
http://www.javacodegeeks.com/2011/06/android-game-development-tutorials.html
I have created a little demo that ...
2
votes
2answers
235 views
Opengl performance issue when drawing polygon meshes
I'm using the following code to draw some polygon meshes in a 3D game.
void drawModelFace(const MeshFace *face, float *vertices, float *vertNormals, float *textureVerts)
{
glBegin(GL_POLYGON);
...
1
vote
2answers
528 views
Image analysis through GPU (with OpenGL ES) or CPU?
I'd like to analyze the constantly updating image feed that comes from an iPhone camera to determine a general "lightness coefficient". Meaning: if the coefficient returns 0.0, the image is completely ...
1
vote
0answers
99 views
performance between glDrawTexfOES and vertex buffer objects
I am coding an open gl graphics engine and am wondering about the performance of glDrawTexfOES(1) vs vertex buffer object as billboards(2). I know (1) is faster than (2) but you cannot rotate (1). So ...
0
votes
0answers
225 views
Best way to estimate OpenGL frames per second on iOS is *not* Apple's Instruments?
We have an App based on Apple's GLCameraRipple example which does realtime image processing on video from the iOS device's camera.
Apple's Instruments reports that OpenGL is running at ~30-40fps ...
2
votes
2answers
265 views
iOS video playback
In my application i should play video in unusual way.
Something like interactive player for special purposes.
Main issues here:
video resolution can be from 200*200px up to 1024*1024 px
i should ...
1
vote
1answer
108 views
Going from OpenGL ES 1.1 to ES 2 just for performance issues
I have read a lot about the pros and cons of going from ES 1.1 to ES 2 and I just wanted to clarify one thing. The game I have made, using ES 1.1, has performance issues (runs slow and low FPS) on ...
0
votes
1answer
261 views
Manipulating large amounts of pixels on iOS
I need to move large amounts of pixels on the screen on an iOS device. What is the most efficient way of doing this?
So far I'm using glTexSubImage2D(), but I wonder if this can be done any faster. I ...
2
votes
2answers
1k views
OpenGL ES shader degrades too much performance
I'm optimizing a game that works for both, iPhone and Android. I'm using 4 shader to draw the scene and I noticed that if I change one of them to another the fps goes from 32 to 42, even though ...
0
votes
2answers
416 views
iOS OpenGL ES - Only draw on request
I'm using OpenGL ES to write a custom UI framework on iOS. The use case is for an application, as in something that won't be updating on a per-frame basis (such as a game). From what I can see so far, ...
1
vote
2answers
224 views
Opengl Es 2.0 Shader Manager
i have a simple question, is it faster to check integer value from memory or ask opengl to do something simple, like use program, or bind texture?
I am writing shader manager class and just wondering ...
0
votes
2answers
190 views
Android, performance degrading if multiple activities
I have an OpenGL based app, all is working fine so far. The app consists out ouf 2 activities, the main activity containing the OpenGL view and an additional activity that contains a movie player for ...
1
vote
0answers
131 views
Change rectangle dimensions: Change vertices in FloatBuffer or use glScalef
So it goes like this. I have 40 rectangles of different heights. 20 placed at the top edge of the screen linearly one after the other and the other 20 placed at the bottom edge, also linearly.
The ...
2
votes
2answers
1k views
How can I boost up OpenCV performance on iPhone?
I'm using AVFoundation to capture video along with OpenCV to do image processing on iPhone. However, I'm considering using OpenGL shaders to do calculations (convolving) on 192x144 grayscale image.
...
1
vote
2answers
291 views
(iPhone, OpenGL) direct texture data storage in files
At this moment I use this scenario to load OpenGL texture from PNG:
load PNG via UIImage
get pixels data via bitmap context
repack pixels to new format (currently RGBA8 -> RGBA4, RGB8 -> RGB565, ...
2
votes
1answer
522 views
Android - OpenGL FloatBuffer vs IntBuffer
On most Android devices, should I expect a performance increase if I do all my OpenGL vertex calculations/rendering in Integers instead of Floats?
I recently switched from using an OpenGL viewport ...
0
votes
2answers
351 views
iOS5 & OpenGL ES 2.0 Best Compiler
This is an update to the question: iPhone GCC / LLVM GCC or LLVM? ...since it's been over a year since that question was asked.
I'm very new to graphics processing and am just beginning to learn ...
0
votes
0answers
541 views
OpenGL ES 1.1: Performance issues on Tegra tablet
I'm currently working on a game engine on Android using the NDK. I developed a graphic engine using OpenlGL ES 1. I have createe a scene to render with some big square (with no texture) in rotation. ...
1
vote
1answer
136 views
Input Delay at start of iOS game
When I run my iOS game on a device, for a minute from the start approximately there is a delay in input: when I touch the screen somewhere, the game recognizes that touch only after 2 to 3 seconds; ...
-1
votes
1answer
356 views
What is the fastest drawing method on iOS?
I'm developing a 2D game on iOS, but I'm finding it difficult getting drawing to run fast (60 FPS on Retina display).
I've first used UIKit for drawing, which is of course not suitable for a game. I ...
0
votes
1answer
199 views
Texture Atlas - Matrices or Coordinates?
When using texture atlases (I'm using OpenGL ES 1.1 and 2.0 on iOS), which has better performance: Using matrices to get the right piece of the atlas for each object, or using texture coordinates?
0
votes
1answer
317 views
ETC Compress image in Android code?
I create a bitmap file in code using the user selected color and other options. I would be loading it as a texture for my code. So I wanted to know if there is a way to compress this newly created ...
0
votes
1answer
1k views
iOS OpenGL too slow
I'm new to Xcode programming and I'm trying to create an iPhone game using OpenGL with support for retina display at 60 FPS, but it runs way too slow. I based it on the GLSprite example at ...
3
votes
1answer
6k views
Limitation on texture size? Android Open GL ES 2.0
I would like to know if there is any kind of limitation on the texture size that can be used in any Android Opengl Es 2.0 projects. I understand that having a huge texture of size 4096x4096 is a bit ...
0
votes
1answer
565 views
Is Android opengl really that much slower than canvas?
I modified a sample opengl application for some speed tests that really make opengl look slow and I would like to know if I am doing something wrong here.
The Setup, Loading&Binding and Rendering ...
0
votes
2answers
236 views
Android: Performance 'hickups' in live wallpaper application
I'm experiencing some problems with a live wallpaper application that i'm writing.
I'm using OpenGL 1.0 for rendering. In general the performance that i'm getting is pretty decent. On a Samsung ...
0
votes
1answer
372 views
OpenGL sending vertex pointers or generating buffers
I just started OpenGL for iPhone, using GLKit. My programming background is almost just java and objective c with little,little experiences with C, C++ over ten years ago. All what remained is a ...
0
votes
2answers
67 views
Is there a compact way to specify solid per-triangle colors when using Vertex Buffer Objects?
I'm drawing a VBO in GL_TRIANGLES mode, and I just draw solid triangles.
Right now I have to create a 4-component color for every single vertex. For each triangle that means 3 colors, which results ...
2
votes
2answers
883 views
How to discover if OpenGL ES frame rate is stuttering - without Instruments?
A friend just asked me this interesting question and I had no answer to this.
He's making a game and sometimes he experiences lags in the frame rate. As if 10 or more frames get dropped.
The run ...
1
vote
1answer
202 views
OpenGL: Clipping textures and its performance
Is it faster to render 2 moving (and tileable) background images (two 640*960 textures) or to clip them dynamically so that exactly 640*960 pixels of the screen are used and not more?
I am trying to ...
0
votes
2answers
772 views
OpenGL ES render performance
I have a simple question concerning the render performance under OpenGL ES.
Lets assume i am rendering a simple 2D particle system, with lets say 1000 particles, on a mobile device like an iPhone or ...

