Tagged Questions

2
votes
1answer
164 views

Descriptive monitor name from D3D display adapter ID

As the question suggests, I'm trying to pull a descriptive monitor name to match with a display adapter name. The code below gives me a device ID like \.\DISPLAY1 which is understandable but not what ...
2
votes
2answers
116 views

With D3D, do I need to call release before I exit my process?

The tutorial that i'm taking for direct3d says this: "... Basically, if you create Direct3D, but never close it, it will just keep on running in the background of the computer until your next reboot, ...
1
vote
4answers
279 views

2D tile based game, shows gaps between the tile sprites when I zoom in with the camera?

I am using the D3DXSPRITE method to draw my map tiles to the screen, i just added a zoom function which zooms in when you hold the up arrow, but noticed you can now see gaps between the tiles, here's ...
1
vote
0answers
250 views

Boggling Direct3D9 dynamic vertex buffer Lock crash/post-lock failure on Intel GMA X3100

For starters I'm a fairly seasoned graphics programmer but as wel all know, everyone makes mistakes. Unfortunately the codebase is a bit too large to start throwing sensible snippets here and ...
1
vote
1answer
2k views

Enable AntiAliasing in Direct3D9 (MultiSample Render Target)

I am trying to enable AA in a D3D9 application, but am not sure how to set up the surfaces correctly. So far, I have: IDirect3DDevice9* m_pd3dDevice; IDirect3DSurface9* screen; IDirect3DSurface9* ...
1
vote
3answers
751 views

Direct3D Texture Post-Processing/Copying

So I'm trying to implement some Direct3D post-processing, and I'm having issues rendering to textures. Basically, my program looks like this: // Render scene to "scene_texture" (an HDR texture)... ...
0
votes
1answer
32 views

passing direct3d shader parameters dynamically

I want to make my brightness and contrast shader change by dynamically changing offset parameters, but I dont want to recompile my shader everytime I am changing shader buffer. The current shader ...
0
votes
1answer
67 views

How to get an off-screen plain surface from 'normal' IDirect3D9Surface

I'm working on a media player with Media Foundation. I'm trying to use post processing with DXVA-HD. However, when I try to do a VideoProcessBltHD using the HD device, it fails with E_INVALIDARGS. ...
0
votes
1answer
82 views

ID3DXFont::DrawText modifying the IDirect3DDevice9 vtable

I am messing around with Direct3D - modifying vtable entries for a device object so that my functions get called instead the provided ones. I noticed that despite this mostly working, at points ...
0
votes
2answers
389 views

Taking screenshot C++ directx gets black image

I'm trying to take a screen capture with directx. I tried code from several pages that explains how but always get a black screen shot. If someone can help me I will be grateful. my code is: int ...
0
votes
1answer
327 views

Direct3D 9 Shadow Mapping Blend Mode

I am currently trying to draw shadows over a scene in direct3d 9. I am trying to do some multi pass rendering and am having trouble understanding how to use/set the blend mode. I have done a depth ...
0
votes
1answer
200 views

Rotate camera over centre of a model

i have 2 meshes rendered with DirectX 9 and a camera that is looking at 0,0,0. One mesh is located at 0,0,0 and the other one at 5,0,0. How can i rotate the camera around 0,0,0 to always look the two ...
0
votes
3answers
38 views

Memory management of hDCs

I've got an ID3DXFont (which is Direct3D9, by the way) which offers a method GetDC() which returns a handle to a device context (hDC). How is the memory for this value managed? MSDN doesn't mention ...
0
votes
1answer
460 views

Drawing sprites on D3D device

I have a hooked DirectX used in C++ code that draws text and sprite. I tested it and it drew well onto 2D application. However, when I tried it with 3D application (some complex game actually), only ...
0
votes
1answer
461 views

DirectX depth buffering not working

For some strange reason my depth buffer is not working, i.e. the triangles drawn later always overlap, regardless of their position. I have these presenter parameters D3DPRESENT_PARAMETERS d3dpp; ...
0
votes
0answers
574 views

HLSL and ID3DXFont/ID3DXSprite

I've started at the beginning, and my code will capably display the grand total of some text. I've been adding support for sprites. The trouble that I've run in to, is that it doesn't seem to ...
0
votes
1answer
394 views

Unable to use SetTransform in D3D9

What might stop IDirect3DDevice9::SetTransform from working? I've looked at alot of tutorials for using transformation matrices in Direct3D9, including this one here. And as far as I can tell, they ...
0
votes
3answers
143 views

Compiling DX 9.0c app against March09SDK => Cannot run with older DX 9.0c DLLs => Problem :)

I'm unable to do a scenario from subject. I have DirectX 9 March 2009 SDK installed, which is 9, "sub"-version c, but "sub-sub"-version is 41, so libs (d3dx9.lib d3d9.lib) are linking exports to ...