Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
358 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 ...
6
votes
2answers
434 views

Drawing video with text on top

I am working on an application and I have a problem I just cant seem to find a solution for. The application is written in vc++. What I need to do is display a YUV video feed with text on top of it. ...
4
votes
4answers
2k views

“Exclusive” DirectDraw palette isn't actually exclusive

We're maintaining an old video game that uses a full-screen 256-color graphics mode with DirectDraw. The problem is, some applications running in the background sometimes try to change the system ...
3
votes
1answer
276 views

Accessing DirectDraw surface memory directly in C#

I have a video capture card that works by periodically filling a user-specified buffer (a given memory address) with image data. That works for me in C++, because I can just give it a ...
3
votes
2answers
452 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 ...
3
votes
3answers
641 views

Win32: How to determine if DirectDraw is enabled?

When using CachedBitmaps in GDIPlus, there is graphical corruption if Windows video "Hardware Acceleration" is lowered too much - such that DirectDraw is disabled: There are six levels of hardware ...
3
votes
1answer
1k views

Rotate an Image in Windows Mobile Programming

Are there any mechanism within Windows Mobile programming to rotate a Bitmap? I would like to rotate this to any angle.
2
votes
1answer
153 views

“Transparent” Windows Form flickers when in front of DirectDraw Video Surface

I have an application where, beyond my control, several Windows Forms have a TransparencyKey property set. When these windows cover (are in front of) another form which has a DirectDraw video surface, ...
2
votes
1answer
263 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
4answers
894 views

Delphi + webcam

I am looking for a way to use my webcam in delphi, primary for grabbing a picture, by some reason I cannot use TWAIN drivers.
2
votes
0answers
35 views

how can I detect the maximum size of overlay hardware via Direct Draw library?

how can I detect the maximum size of overlay hardware via Direct Draw library?
2
votes
5answers
692 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
590 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

DirectDraw Blt function parameters

Just a simple blt function: RECT dstRect = {dstL, dstT, dstR, dstB}; RECT srcRect = {srcL, srcT, srcR, srcB}; HRESULT hr = _surface->Blt(&dstRect,source,&srcRect,DDBLT_WAIT, NULL); My ...
1
vote
2answers
156 views

error LNK2001: unresolved external symbol _IID_IDirectDraw2

I work with piece of legacy code which uses direct draw and I'm in rather embarrassing situation. Not long ago I've updated my system and had to adapt to the new situation (loading ddraw.dll) and ...
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
193 views

Where is the DirectDraw documentation?

I'm maintaining a legacy application, and I need to find the documentation for the IDirectDraw::SetCooperativeLevel function. (No, the Windows CE MSDN page doesn't cut it.) It's not in MSDN, it's not ...
1
vote
1answer
293 views

sdl remote desktop

for a simple demo program I am using the SDL library to play a mpeg movie file. Unfortunately the demo app should be executed on one of our windows 7 servers and it should be looked at remotely. The ...
1
vote
0answers
278 views

How to scale a sprite image without losing color key information?

I'm currently developing a simple application that displays map and draws some markers on it. I'm developing for Windows Mobile, so I decided to use DirectDraw and Imaging interfaces to make the ...
1
vote
1answer
754 views

Conversion from YUV444 to RGB888

I am new in this field and i desperately need some guidance from u all. I have to support yuv444 to rgb 888 in display driver module. There is one test which i have done for yv12 → rgb565 in ...
1
vote
2answers
988 views

Directdraw: Rotate video stream

Problem http://stackoverflow.com/questions/2318390/windows-mobile-directdraw-rotate-video-stream The video preview is working, all I need now is a way to rotate the image. I think the only way to ...
1
vote
2answers
822 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
493 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
481 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
91 views

Displaying another application on top of a directdraw full screen application

I am using a Full Screen application that is using DirectDraw functions for display and it is working fine. Now I want to show another application with its own window but the other application is ...
0
votes
1answer
77 views

Allegro 4.2.4 in palette mode on Windows7 corruption

I have problem with Allegro 4.2.4 running palette mode (256 colors) in Windows 7. I found over Internet solution of killing explorer and it's working indeed, however it would be ridiculous to expect ...
0
votes
0answers
86 views

Full Justification with D2D vs. GDI

With GDI, we have the function SetTextJustification. How do we implement this feature, with DirectDraw? We have ID2D1RenderTarget::DrawGlyphRun which does text drawing. Can we still use ...
0
votes
0answers
97 views

what's the different betweeb IDirectDraw_Initialize and DirectDrawCreate?

i found some weird test result with follow system. vga: NVIDIA GeForce2 MX 100/200 (Microsoft Corporation) date: 2004-04-07 ver: 5.6.7.3 CPU: Pentium(R) 4 CPU 2.00GHz ...
0
votes
1answer
194 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
411 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) ...
0
votes
1answer
295 views

Resolving 'LNK2019 unresolved external symbol' on DirectDrawCreate

I've been attempting to get DirectDraw to function on a CE5.0 framework for the last week and I'm running into some very odd issues. ddrval = DirectDrawCreate(NULL, &lpDD, NULL); When I have ...
0
votes
1answer
104 views

'The parameter is incorrect' while attempting to use PInvoke DirectDraw in WinCE5.0

I've been having an issue for a while in regards to getting DirectDraw to function on a CE5.0 system. I finally found some code involved with getting it working on Windows Moblie, and through some ...
0
votes
4answers
222 views

What's the fastest way to repeatedly fill a window with RGB data from an array?

I'm currently writing a simple game. My graphics code runs once per frame (approximately 30 times per second), and writes RGB data to an array with 640 * 480 = 307200 entries. I have created a Win32 ...
0
votes
1answer
194 views

DirectDraw better than Direct3d for streaming?

Let me specify little background. I currently use an open source program to run my TV Tuner (DScaler). The final version for the software has some support for Direct3D output, the problem with this ...
0
votes
1answer
97 views

DirectDraw: Clipping fails if surface is larger than backbuffer

I'm writing a game engine for mobile devices, and I'm trying to support multiple resolutions. The game world can be much larger than the screen, so I'm using a clipper to create a viewport on the ...
0
votes
1answer
502 views

Implement Hardware Acceleration for Graphics in Silverlight for Windows Embedded

Does anyone have any sample code to how to use DDraw & OpenGL in wince? I have searched the net and I didn't find anything on how to implement hardware acceleration in wince using DDraw & ...
0
votes
1answer
106 views

Can I prevent IVideoWindow::put_Visible from posting a message?

When ever IVideoWindow::put_Visible() is invoked, it peek a message from the message queue and dispatch it. That totally messes up the call sequence. I have fixed several crashes caused by this, in a ...
0
votes
1answer
664 views

Windows Mobile / Directdraw: Rotate video stream

Follow up from: http://stackoverflow.com/questions/2289637/windows-mobile-directdraw-display-video-stream-take-picture I managed to preview the camera's video stream, but the image is rotated by 90° ...
0
votes
2answers
266 views

Getting programmicaly Device Caps for DirectX 6.1 (DDraw4)

I am writing windows32 hooks around DirectX 6.1 library to DirectX 9.0c; Idea is to replace all calls to DX 6.1 3D device with calls to Direct 9.0c and inject some custom code, so old game which I am ...
0
votes
2answers
251 views

Is BltFast supported in Windows Mobile DirectDraw?

Can I get access IDirectDrawSurface5 on a WindowsMobile device so that I can access the BltFast method?
0
votes
1answer
92 views

Internet Explorer control (or other) rendered onto a directdraw surface

I'm tasked with modifying an existing c++ codebase which uses directdraw for its UI. Is it possible to make use of a browser control that renders onto one of the (existing) directdraw surfaces? If so, ...
0
votes
2answers
533 views

DirectDraw question - running the application as a regular Windows application

I am developing an application for video recording and I want to overlay the video preview with a logo and recording timer. I tried to run the full-screen application and everything worked fine. Then ...