The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
15answers
1k views

How can I record my vector graphics game without blurring the graphics?

A lot of people asked for a trailer for my game, because screenshots do not do it justice. I have tested PlayClaw, Fraps, CamStudio, VirtualDub, and some other minor tools; none have produced a viable ...
10
votes
0answers
219 views

My game seems to be incompatible with recording software. What could be causing this?

I've just finished a little Game-Dev project for university and I need to record a video to accompany my submission (just in case they can't get my source to work). Basically my game doesn't work at ...
4
votes
3answers
935 views

How to capture the screen in DirectX 9 to a raw bitmap in memory without using D3DXSaveSurfaceToFile

I know that in OpenGL I can do something like this glReadBuffer( GL_FRONT ); glReadPixels( 0, 0, _width, _height, GL_RGB, GL_UNSIGNED_BYTE, _buffer ); And its pretty fast, I get the raw bitmap in ...
3
votes
1answer
399 views

Tools/methods for creating demo videos of iPhone/iPod Touch games?

I'd like to create a simple demo video of a game for iPhone and iPod Touch. What tools do people use for this? Ideally I can capture the device's screen... as opposed to the simulator. Also the ...
0
votes
2answers
208 views

How can I capture every frame in DirectX 9 using a shader

This is actually a follow up to this question How to capture the screen in DirectX 9 to a raw bitmap in memory without using D3DXSaveSurfaceToFile The proponent of the best solution suggested that I ...