Tagged Questions

6
votes
3answers
357 views

Why not use GDI to repeatedly fill a window with RGB data from an array?

This is a follow-up to this question. I'm currently writing a simple game and am looking for the fastest way to (repeatedly) display an array of RGB data in a Win32 window, without flickering or other ...
3
votes
2answers
449 views

ActiveX HWND, DirectX WindowLess mode

I would like to render video in ActiveX control (not in pop-up DirectShow window). I have: IID_IVMRWindowlessControl IID_IVMRFilterConfig9 CLSID_VideoMixingRenderer9 I would like to set WindowLess ...
2
votes
1answer
261 views

CreateSurface in DirectDraw returns E_INVALIDARG on x64

In the following code, hRet gets set to E_INVALIDARG when built for x64. The same code always works ok in 32 bit. The only clear difference in input is the sizeof ddsd, which is 4 bytes larger in 64 ...
2
votes
5answers
690 views

DirectX9, DirectDraw, Optimization?

First off, I'm programming a game. Currently in the render function there are two calls to two different functions. One renders some text, one renders sprites. On my computer (AMD Phenom(tm) II X4 ...
2
votes
3answers
589 views

Mix opengl and directdraw in different windows of the same application?

I'm developing an application with two windows: Window 1: Renders direct draw surfaces Window 2: I'd like to have it do pure OpenGL calls I don't want to mix OpenGL and DirectDraw in the same ...
1
vote
1answer
91 views

Target most Windows versions for a 2D game?

If one were to code a game for most versions of Windows, which API should be used? I know DirectDraw works from NT4 and up (although DirectDraw is emulated on NT4 with GDI). However, I am told ...
1
vote
2answers
821 views

DirectDraw Overlays

Does anyone have a working example (code) of a DirectDraw overlay? Like something moving on the screen. I have been trying to find an example of DirectDraw overlaying usage and was unable to. Thank ...
1
vote
2answers
491 views

Stretch blit in DirectX results in jagged edges

I have a Direct3D app which runs windowed or fullscreen at a fixed res (say 800x600). To support widescreen modes, I render to the back buffer at 800x600 and then use Blt to draw the final frame into ...
1
vote
2answers
479 views

C++ function to do DxDiag “Direct3D Acceleration” detection

Microsoft DxDiag can detect whether a system has "Direct3D Acceleration". If the system has not the capability, DxDiag will write "Direct3D Acceleration not available" and will write in the console ...
1
vote
1answer
263 views

What might cause IDirectDraw::GetCaps returns DDERR_INVALIDPARAMS?

I have this little snippet of code with IDirectDraw::GetCaps returning DDERR_INVALIDPARAMS (a.k.a. E_INVALIDARG, a.k.a. 0x80070057). The loaded dll is ddraw.dll 5.03.2600.5512 (xpsp.080413-0845) I ...
0
votes
1answer
193 views

is screenshotting by DirectDraw faster than GDI way?

just to save some time, probably anybody tried this or saw somewhere related info. asking about DirectDraw and not about DirectX because I need to support Win2000 and up, and I cannot install DirectX ...
0
votes
2answers
410 views

Replacing legacy DirectDraw code

Yesterday I found source codes for my Tetris game developed many years ago in C++, Win32 API and DirectDraw 7. I tryed to build solution without any success because most recent DirectX SDK (June 2010) ...