Tagged Questions

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 ...
2
votes
5answers
691 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 ...
1
vote
1answer
89 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
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
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 ...
0
votes
1answer
89 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
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
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
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 ...