Tagged Questions
The direct3d9 tag has no wiki summary.
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, ...
3
votes
1answer
205 views
Bad behavior with Aero off in Vista
I have a directx9 application, which needs to run on a machine with Aero disabled. The app runs in windowed mode. When the window is first created, it looks just fine within a single screen. When I ...
2
votes
1answer
167 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
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
119 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
242 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
289 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( ...
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
2answers
21 views
Which pixels did that drawmesh operation just draw to?
Ok, it's a relatively simple problem, I want to know where, in screen space, a particular mesh was just drawn. I plan on then storing that information in a data store of some kind so that when I ...
1
vote
4answers
282 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
163 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
82 views
Do you need to call CoInitialize() when using Direct3D9?
My understanding was since D3D is using COM, the answer is yes. But in the Ogre rendering engine, it appears this is never called. Is this fine or an oversight - if so could it have some actual ...
1
vote
1answer
147 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
0answers
251 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
1answer
150 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
752 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
24 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
37 views
Multiple Direct3D 9 devices and Alt-tabbing
I have an application that creates a Direct3D 9 device in fullscreen mode and then starts presenting. At a later point, after having created the first device, I temporarily create a new Direct3D ...
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
17 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
68 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
15 views
Can I run multiple parallel ID3DXRenderToSurface?
Is it possible to create multiple instances of ID3DXRenderToSurface and have them rendering in parallel in threads? It seems unlikely, but as certain aspects of DirectX are still somewhat boggling to ...
0
votes
1answer
106 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
48 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
0answers
33 views
Texture Constants missing from ID3DXConstantTable?
I'm working on my own material/"effect" system and I've run into some trouble trying to map all the shader constants to their handles. While prototyping, I'm using the D3DX9 shader compiler and ...
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
83 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
392 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
0answers
187 views
Want to run Direc3D 9 version on Windows 7
I've just written some simple CreateDevice code that targets Direct3D 9. This code builds properly in Visual Studio but crashes at runtime when CreateDevice is called.
Similar sample code from the ...
0
votes
1answer
328 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
113 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
0answers
198 views
D3D Mobile: Back buffer->GetDC always returns D3DMERR_INVALIDCALL
As the title indicates, I couldn't get a valid handle to the back buffer's DC using GetDC().
I've gone through the MSDN page for IDirect3DMobileSurface::GetDC several times now, trying to see whether ...
0
votes
1answer
186 views
D3D9 HLSL Matrixed My Brain
I'm seeking help from all of you expert with Direct3D. Frankly I'm getting nuts by a really weird behavior from HLSL. It's the way I specify matrices.
Now my question D3DX 9 functions:
...
0
votes
1answer
202 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
90 views
What is the Xbox360's D3DRS_VIEWPORTENABLE equivalent on WinXP D3D9?
I am maintaining a multiplatform codebase for Xbox360 and WinXP. I am seeing an issue on the XP side that appears to be related to D3DRS_VIEWPORTENABLE on the Xbox360 version not having an equivalent ...
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
1answer
465 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
91 views
Does Direct3D9 support quad primitives or not?
I read in the Direct3D9 help (emphasis mine) :
Direct3D 9 supports points, lines, triangles, and grid primitives. These have been extended to support higher-order interpolation beyond linear. ...
0
votes
1answer
464 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
595 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
0answers
578 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
372 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
395 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 ...
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?