Tagged Questions

3
votes
2answers
1k views

Direct3D: efficient way to get system memory bitmap from IDirect3DSurface9 (default pool)?

I have IDirect3DSurface9, default pool, YUV format. How can I efficiently get bitmap bits from it? At the moment I: create render target: device->CreateRenderTarget(surf_desc.Width, surf_desc.Height, ...
2
votes
2answers
234 views

(DirectX9) Gamma correction applied implicitely

UPDATE: Thank you all very much for your answers. As Jesse Hall suggested, it looks like it is a driver (or hardware) problem. I tried the same app on other configurations and it worked as expected. ...
2
votes
2answers
117 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, ...
2
votes
1answer
240 views

calling IDirect3D9::CreateDevice() from DllMain hangs

What can be a reason? From DllMain() on DLL_PROCESS_ATTACH I'm calling IDirect3D9::CreateDevice() and it hangs code is straightforward, just like: BOOL APIENTRY DllMain( HMODULE hModule, ...
2
votes
1answer
288 views

Clipplanes, vertex shaders and hardware vertex processing in Direct3D 9

I have an issue with clipplanes in my application that I can reproduce in a sample from DirectX SDK (February 2010). I added a clipplane to the HLSLwithoutEffects sample: ... D3DXPLANE g_Plane( ...
1
vote
1answer
68 views

Go to windowed mode in Direct3D 9

I'm making a Direct3D app, and I can easily go from Windowed to Fullscreen mode using IDirect3DDevice9::Reset with new presentation parameters. However, when I use the same trick to go from fullscreen ...
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
2answers
132 views

Are D3D9 apps tied to exact D3DX DLL version?

If I built my app against D3DX June2007_d3dx9_34 and the target system has a newer version Nov2007_d3dx9_36 should that be a problem? I distribute D3DX DLLs using MS' redist-installer tool but I ...
1
vote
1answer
162 views

Minimal code to create a Direct3D9 Device

This isn't for stable release code, I just need to get a windowed D3D9 device created in a C++ app from a HWND on my dev PC for testing something... it can default on loads of options. I was trying ...
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
1answer
148 views

Drawing targetting circle in 3d application

I'm working on a 3d game just for learning. I have a 3d world generated from a heightmap and various mesh based objects overlayed onto that world. I want the player to be able to target objects in ...
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
16 views

buffering direct3d draw operations

The question is 2D specific. I am a constantly updating texture, which is a render target for one of my layers. The update is a whole redraw of the texture and is performed by drawing sprites and ...
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
47 views

Why would IDirect3DDevice9::Release return S_FALSE?

When I call the Release method for my Direct3D9 device it returns S_FALSE but I can't find anything that explains why this value would be returned. From what I can gather, S_FALSE means that it has ...
0
votes
1answer
77 views

How do I use 'WaitForVBlank' to get VSYNC interrupts in Direct3d9

I'm a newbie on Direct3D9 and trying some stuff. I wish to use 'WaitForVSync' on a 'IDirect3DDevice9Ex' device. However, I have no clue how to use it and get VSYNC interrupts. I couldn't find much ...
0
votes
1answer
70 views

Release Direct3D resources left behind by forcefully terminated application

I'm working on a Direct3D application and I sometimes need to terminate the application forcefully via the debugger. After the application has been terminated in this way a couple of times, Direct3D ...
0
votes
3answers
593 views

What are possible causes of IDirect3DVertexBuffer9::Lock failing?

In error reports from some I have quite often seen following behaviour: IDirect3DVertexBuffer9::Lock fails, returned error code is D3DERR_NOTAVAILABLE. Once this happens, quite frequently (but not ...
0
votes
1answer
371 views

How to render formatted text in Direct3D9?

I'm writing an application which needs to draw a lot of text - several lines, maybe tens of lines - in Direct3D9. The text can be heavily formatted (i.e. different typefaces, styles, sizes) and can ...
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
1answer
413 views

Can StretchRect be used with DF24 or INTZ surfaces? Can DF24 or INTZ be multisampled?

Can you StretchRect from a DF24 into another DF24 (ATI specific)? Can you StretchRect from a INTZ into another INTZ (nVidia specific)? Can you create DF24 or INTZ as multisampled surfaces?
-1
votes
1answer
99 views

Does someone know of some fixed pipeline shader tutorial or samples?

I am making a game with 3d gamestudio a8 free edition. The free edition doesn't support shader, it only supports fixed pipeline shaders. There are some samples in the wiki of 3d gamestudio (click ...