Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
14k views

how to enable vertical sync in opengl?

How do you enable vertical sync? Is it something simple like glEnable(GL_VSYNC)? (though there's no such thing as GL_VSYNC or anything like it in the options that glEnable accepts). or is there no ...
6
votes
5answers
4k views

Vsync in Flex/Flash/AS3?

I work on a 2D shooter game with lots of moving objects on the screen (bullets etc). I use BitmapData.copyPixels(...) to render entire screen to a buffer:BitmapData. Then I "copyPixels" from "buffer" ...
4
votes
3answers
553 views

To use or not to use VSync

I'm deciding on whether or not to use VSync for a new game that I've been developing using OpenGL. The goal is to provide the user with the best gaming experience, and to have a good balance between ...
4
votes
2answers
508 views

What hardware can support CADisplayLink class?

I'm making a game with iPhone. I found iPhone OS 3.1 supports v-sync with CADisplayLink class. I believe v-sync is ideal solution for game graphics, I'll use this only. (no fallback to NSTimer) But ...
2
votes
1answer
216 views

How can I get vsync callback on HTML5 canvas?

How can I vsync callback on HTML5 canvas?
1
vote
1answer
190 views

How does animation at 60Hz works?

I'm using a Thread to make a scrolling under Android. The thread run method is classic. I took it on Internet My view is a SurfaceView. public void run() { Canvas canvas = null; while (_run) ...
1
vote
0answers
147 views

Direct3D 11 missing GetRasterStatus, how do I detect the vertical blank period?

I'm updating an application in which measurement of the time of presentation of a stimulus on a screen requires the greatest amount of accuracy. It is currently written with DirectDraw, which got put ...
1
vote
1answer
559 views

Fast screen capture and lost Vsync

I'd like to generate a movie in real time with a self-made application doing fast screen captures with part of the screen occupied by a running 3D application. I'm aware that several applications ...
1
vote
4answers
1k views

How to enable VSYNC in OpenGL

The WGL_EXT_swap_control extension allows doing this on Windows, but I am unable to find anything even remotely cross-platform doing the same, i.e. syncing my buffer swaps with screen refresh. My ...
1
vote
4answers
334 views

VB6 Vertical Sync for Emulator

This is maybe an oblique question: I'm writing an emulator in VB6 (silly me). For smooth window refreshing in the emulator itself, I would like to grab the vertical sync of the monitor. Are there ...
1
vote
2answers
995 views

How to avoid tearing with pygame on Linux/X11

I've been playing with pygame (on Debian/Lenny). It seems to work nicely, except for annoying tearing of blits (fullscreen or windowed mode). I'm using the default SDL X11 driver. Googling suggests ...
0
votes
1answer
76 views

Thoughts on writing a fixed framerate draw loop without VSYNC

I have a quick question about fixing the FPS without using VSYNC. I currently have a draw loop that is calculating the time between draws, and subtracting the amount of time required to draw to try ...
0
votes
0answers
193 views

Android GLSurfaceView ~56fps - How to control swap?

When running the basic sample: http://android-developers.blogspot.com/2009/04/introducing-glsurfaceview.html Add some basic timing using System.currentTimeMillis() or dropping to native code and ...
0
votes
1answer
265 views

wpf wait for vsync (Image)

I use a UDP API that updates a camera feed to a ImageSource, I have a timer that updates the ViewModel's ImageSource and then WPF databinds the Image on screen. The timer has an interval that fires ...
0
votes
2answers
409 views

Perfect V-sync implementation for a lightweight OpenGL game: need one tidbit of information

In the game our Internet-assembled team is programming, we're assuming everybody from our audience will have WAY over fullspeed in the game. So, to save video RAM, and hopefully give a little more ...
0
votes
1answer
234 views

V-Sync in MFC and GDI+

hi I'm using MFC SDI application for my mid term project. but every time i draw scene (with GDI) and "invalidate()" it flicking occur. I use DWM for double buffering and removing flicking but it ...
0
votes
2answers
1k views

How to enable VSYNC in D3D windowed app?

So, Im using D3D in a windowed application. I inited D3D with the following parameters: windowed: true; backbufferformat: D3DFMT_X8R8G8B8; presentinterval: D3DPRESENT_INTERVAL_ONE; swapeffect: ...
0
votes
0answers
410 views

iPhone deactivate vsync

is there a way to deactivate vsync in openGL ES on the iPhone? i know that there is a command eglSwapInterval which could be used to disable vsync in openGL ES - but egl.h (which defines this ...