Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
844 views

lockCanvas() really slow

Testing my game on a slower device (Orange San Francisco aka ZTE Blade) and I have been getting an appalling frame rate. I put some debug code into the draw loop and discovered the following line is ...
9
votes
1answer
1k views

Linux: Screen desktop video capture over network, and VNC framerate

Sorry for the wall of text - TL;DR: What is the framerate of VNC connection (in frames/sec) - or rather, who determines it: client or server? Any other suggestions for desktop screen capture - but ...
9
votes
5answers
7k views

Why are touch events destroying my Android framerate?

I'm developing a game for Android. It's got a lot going on but is running reasonably smoothly. That is, of course, until the user touches the screen. While they're touching it, onTouchEvent is called ...
6
votes
2answers
535 views

Poor performance of Android Canvas.drawBitmap - switch to OpenGL?

I'm porting a 2D action game from Windows Phone 7 (developed in XNA 4.0) over to Android. I'm using a lot of Canvas.drawBitmap() calls - around 200-300 per frame update - with different Paints for ...
5
votes
2answers
1k views

Help getting frame rate (fps) up in Python + Pygame

I am working on a little card-swapping world-travel game that I sort of envision as a cross between Bejeweled and the 10 Days geography board games. So far the coding has been going okay, but the ...
4
votes
0answers
73 views

Options available to a programmer on the Main Game Loop [closed]

Could one of you please give me a bit of insight to each one of these 4 topics, I am just a little confused on what it is asking. I have a good idea on what passive and active rendering are, and ...
4
votes
2answers
453 views

c# XNA low frame rate

Ok, I have 80,000 "Box" Mesh with simple textures I have set a view distance and only draw the ones you can see which leave 600 to 1000 for the DrawModel function belowe The problume is I only get 10 ...
4
votes
8answers
712 views

Race car game, car moving faster on faster computer

I understand why it does that but I don't really have any idea of how to prevent that. So the scenario is, every frame I move the car by a certain of predefined pixels. What happens is when I go on ...
3
votes
0answers
36 views

How to use Frame Rate convertor DMO in MF app

I wish to use the Frame Rate convertor DSP in my media foundation application. I'm using the 'SourceReader' to read the video file. Can anyone tell me where and how to integrate the DMO with MF to ...
3
votes
1answer
681 views

How to change framerate when using MediaRecorder Class

I try to record video using MediaRecorder Class. However I find out that I failed to lower the framerate of the video stream. I'm using H.264 as my Video Encoder and AAC as my Audio Encoder(yes, it ...
3
votes
2answers
636 views

Android GLES20 big textured quad very slow (on Nexus One)

I render 2 triangles covering the whole surface using GLES20 context only. The problem is now that drawing just one single texture this way seems to be unreasonably slow. The framerate goes down from ...
3
votes
2answers
352 views

How do I get a consistent speed on new as well as old iPhones?

I'm in the process of creating a 2D game in OpenGL ES for the iPhone. I'm calling my game loop using NSTimer at an interval of 0.002 (60 fps) with repeats set to 'NO' (I'm running the NSTimer again ...
3
votes
3answers
843 views

How do I make a JavaScript animation play at the same speed on all browsers on all systems?

I have a function that calculates the next frame in an animation of various objects moving in both X and Y axis [ I call it frameRender() ] and a function that applies that resulting frame to the ...
3
votes
1answer
153 views

How is frame duration calculated for repeating decimals?

If I have a video that plays at 30fps, then the duration of each frame is 1/30th of a second or 33.333333... milliseconds. Assume you were implementing a video player, how would you handle the fact ...
3
votes
3answers
2k views

Achieving a constant frame rate in SDL

I'm trying to make an SDL program that runs with a constant frame rate. However I'm finding that even though my program is lagging a lot and skipping a lot of frames (even though it's running at a low ...
3
votes
1answer
223 views

iPhone 3GS OpenGL strange bug

I am developing a 2D game for the iPhone and iPod Touch using OpenGL ES 1.1. Everything works ok on the iPhone, iPhone 3G and all iPod Touch models. The game usually renders the scenes at ~60 FPS. ...
3
votes
2answers
1k views

AVAudioPlayer - Drop in Framerate

I have a quick question: I am loading a mp3 file into a NSData object and then I play it using the AVAudioPlayer in my game. Every second or so, the frame rate drops and you can see a stuttering on ...
3
votes
1answer
2k views

Framerate limit for wpf apps?

i wonder if there is a way to limit the wpf framerate within a process? i.e. i do not want to limit a single animation's framerate, but the global framerate for my whole application. i think i've seen ...
2
votes
1answer
47 views

Time-Based Simulation Independent of Frame Rate

How would you account for an event during which time is very important? Most games use frames and the simulations take place in time steps. What if an event occurred that needed a specific time to ...
2
votes
1answer
52 views

Chipmunk performance issue (sleeping bodies not working?)

this is my first post here (wish me luck) Im building a side-scrolling iOS-game (cocos2d) that uses the chipmunk physics engine (v 5.3.4). The games framerate is dropping dramatically when I move ...
2
votes
0answers
288 views

how to measure the realtime FPS in html5 video while playback

I'm working on measuring the real-time frame rate of html5 video, does anyone has some ideas. Since I have not find the properties info about frame in html5 video, I have no idea about that. ...
2
votes
1answer
213 views

Simple Flash test application runs very slowly compared to exact same Processing applet

So I'm gradually, painfully moving from Processing to Flash in order to hopefully develop games to a wider audience. At long last, I get a working application in Flash made that simply lets the user ...
2
votes
1answer
349 views

Change video playback rate dynamically in Flash

I'm looking for a way to allow a Flash Video to change speed smoothly, from slower to faster than original framerate. It only needs to work on a Windows PC, and the latest version of Flash 10.2 with ...
2
votes
3answers
2k views

Android Drawing text with opengl es crashes after a few minutes

I've created an opengl surface and everything works fine, however when I try to draw text onto it using the following method: public void loadFPSTexture(GL10 gl){ Bitmap bitmap = ...
2
votes
3answers
717 views

Getting stuck at 40 fps even with using CADisplayLink?

At first I used NSTimer and ran into the problem of the frame rate being stuck at 40 frames per second. I've read about using CADisplayLink to fix the problem. It seemed to work for a while, but ...
2
votes
1answer
347 views

Object movement choppy when frame rate is capped

I've been having some trouble with choppy movement of objects in a game. If the frame rate isn't capped, the game runs smooth. If I cap the frame rate at say, 60 fps, the movement is choppy. An ...
2
votes
2answers
936 views

XNA 4.0 runs at 50 instead of 60 fps

I'm experimenting a bit with XNA 4.0, following tutorials and creating very basic stuff (like a triangle and some lines ;-)). While doing this, I noticed that all my applications never run at more ...
2
votes
1answer
320 views

Older iPhone/ iPod frame rate?

Do older iPods and iPhones have a frame rate of 60fps? I'm finding that all the methods for calculating time intervals on iPhone (cftimeinterval, nstimer, timesince1970, etc) are all giving me bad ...
2
votes
4answers
1k views

OpenGl Frame rate

What would be the best way to measure the frame rate of my OpenGL program?
2
votes
3answers
1k views

What causes frame rate loss?

I'm writing a game with cocos2d and I have noticed that the frame rate drops as the game progresses. I've checked for leaks but everything looks fine so I'm at a loss as to what to do next. Sorry if ...
1
vote
1answer
45 views

How can I get and change the framerate of OGRE application?

I am working on Ogre application that I set real time views as a background in my window. Hovewer I have question when I try to get my application's frame rate by using RenderTarget::getAverageFPS() ...
1
vote
1answer
131 views

Get frame rate of a video clip in C#

How to get I get the frame rate of a video clip in C# ? Video clips are in WMV, MP4, MPG formats.
1
vote
1answer
118 views

android app speed/framerate?

I created an app for android. I'm using canvas and making more and more "Sprites" from my Sprite class. when i start the app and there is only one sprite the game runs super fast. I made the class to ...
1
vote
2answers
183 views

GLKViewController: incorrect fps

Hope there are some GLKViewController experts out there because I have some problems :) Just a quick description of my app. I have a UINavigationController in which I push different screens. At ...
1
vote
1answer
154 views

Decrease framerate of an AVI file in AForge

I am completely new to video input, and just started working with AForge a few days ago. Working with live video is comfortable, but I need to do something with files for a project now. Using the ...
1
vote
1answer
66 views

How to change libav decoding framerate?

Is there any way to change libav decoding frame rate? There are several variables in libav structures responsible for getting frame rate but as I know these all are for reading purposes only (in ...
1
vote
0answers
134 views

SWF has higher framerate than specified in the compiler arguments

I compile a SWF with ANT using FDT. In the compiler arguments I am setting default-frame-rate to 30. When I run the SWF, the stage.framerate property is 30 (which is correct), but as the Stats util ...
1
vote
2answers
229 views

Is it possible to change playback speed of only one MovieClip without changing framerate using only AS3?

Is it possible to change playback speed of only one MovieClip without changing framerate using only AS3? I mean, is there any function/property in MovieClip or somewhere that changes the playback ...
1
vote
0answers
116 views

iPhone app runs differently when launched from Xcode

I am working on a game that essentially has two timers to control gameplay. One timer is a CADisplayLink that makes a call to redraw the display (with OpenGL) every frame, so slightly under 60 Hz. The ...
1
vote
2answers
105 views

How can I squeeze an additional 10 FPS out of my [primitive] voxel algorithm?

So, I made this simple 4dof voxel algorithm in JavaScript, and I feel quite proud of myself, but I don't have near enough time to debug and I've lost several days worth of sleep, however I notice that ...
1
vote
1answer
316 views

DirectX 11 SwapChain::Present issue

I've quite the weird problem at my hand here. I'm using directx 11 to make my own game framework/engine and it has worked fine until i tried to implement frustum culling which gave me really weird ...
1
vote
2answers
122 views

How to limit framerate in a curses program?

I've been trying to make a game using ncurses. However, I am stumped with how to make the timing part of my main loop work. Would someone be able to add some insight into how I could add framerate ...
1
vote
2answers
215 views

Why the following will drag the performance of Fragment Shader (Open GL ES 2.0)

I have the following code in the Fragment Shader: precision lowp float; varying vec2 v_texCoord; uniform sampler2D s_texture; uniform bool color_tint; uniform float color_tint_amount; uniform vec4 ...
1
vote
2answers
172 views

Frame independent time in Lua?

I'm using Love2D to create a small game for my friends and I but, I'm having a problem: I want to calculate elapsed time, independent from the framerate. I'm trying this but slight error adds up and ...
1
vote
1answer
125 views

Having a slight problem moving my camera based on time passed using GLUT/OpenGL

Before anyone asks, this is for a university project and I have to use GLUT. I'm not tagging this as homework because this is not a requirement, nor will I have extra points for this. With GLUT, for ...
1
vote
2answers
281 views

UIImageView performance

I have an iphone app that gets jpeg images through wifi at a rate I can control and displayes them using a uiimageview. it seems that the best performance i can get is about 2fps. it lookes like the ...
1
vote
1answer
145 views

Correctly finding frame rate on a custom Java Component

I am not confident my framerate code is correct, and I have not been able to find exact examples of what I am looking for. Essentially I have subclassed java.awt.Component, and inside the ...
1
vote
4answers
1k views

Trying to determine FPS in a C# WPF program

I'm writing an application for a touch table using WPF and C#. (And, I'm not terribly familiar with WPF. At all.) We suspect we're not getting the framerate we're "requesting" from the API so I'm ...
1
vote
1answer
243 views

Flex app behaves differently on Chrome, Firefox

My Flex app seems to have different frame rates in Chrome and Firefox. I have a preloader that is essentially a splash screen that fades away with a Timer, and it is this part that has the noticeable ...
1
vote
1answer
588 views

Android: Frame rate drops in landscape mode

I am trying out the (latest) Android SDK, and noticed some strange behavior. I've written a skeletal SurfaceView app: Activity, SurfaceView and a rendering thread. It doesn't actually do any ...

1 2