2
votes
3answers
391 views
Validating a Win32 Window Handle
Given a handle of type HWND is it possible to confirm that the handle represents a real window?
…
2
votes
2answers
175 views
What can cause a reduction in frame rate when upgrading a graphics card?
We have a two-screen DirectX application that previously ran at a consistent 60 FPS (the monitors' sync rate) using a NVIDIA 8400GS (256MB). However, when we swapped out the card for one with 512 M …
1
vote
1answer
384 views
FFMPEG Frame to DirectX Surface
Given a pointer to an AVFrame from FFMPEG's avcodec_decode_video() function how do I copy the image to a DirectX surface? (Assume I have a pointer to an appropriately sized DX X8R8G8B8 …
9
votes
How to get intellisense to reliably work in Visual Studio 2008
Native C++ intellisense does not work reliably in any version of Visual Studio. I find there are two common problems:
1) Header file paths are not set-up correctly. When you find a type wh …
1
vote
Handling Interrupt in C++
So you have two threads: one running the kernel and one running the app? You will need to make a function in your kernel say ReadyToYield() that the application can call when it's happy for you to …
