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
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
129 views

Cooresponding CopyResource method in D3D9

guys, I know it's easy to copy vertex/index buffer in D3D10 with IDirect3D10::CopyResource(...) interface. How to do the same work in D3D9? Is there any similar API for this?
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
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
146 views

Direct3D 9 Creation and Releasing Threads?

I have an application that uses Direct3D for rendering viewports and it's made as a separate DLL module from the main application which links to it at run-time. The main application is a C# program. ...
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
0answers
20 views

Direct3D DrawIndexedPrimitives Loop

I want to draw a large terrain in VB.NET with Direct3D with the use of DrawIndexedPrimitives function, but the number of primitives I want to draw is lagrer than the ...
0
votes
1answer
103 views

Render video to Direct3D 9.0c texture

I have been trying to play a video in my Direct3D application and have been trying to do so with the help of DirectShow. My problem is that I cannot find how to get the frame data to put into a ...
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
2answers
391 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
112 views

Packaging a custom DirectX redistributable installer

Following MS' advice we have stripped most files from the DX installer contents for our D3D9 application, getting it down to 5Mb in total. But now I;d like to package these files into a single ...
0
votes
1answer
463 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
462 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
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
3answers
1k views

HLSL - How can I set sampler Min/Mag/Mip filters to disable all filtering/anti-aliasing?

I have a tex2D sampler I want to only return precisely those colours that are present on my texture. I am using Shader Model 3, so cannot use load. In the event of a texel overlapping multiple ...
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 ...
-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 ...