Tagged Questions
The d3dx tag has no wiki summary.
2
votes
2answers
53 views
Is it safe to use the same parameters for input and output in D3DX functions?
Using the D3DX library that is a part of directX, specifically directx9 in this case, I'm wondering if it's safe to use the same matrix (or vector etc) for input and ouput
D3DXMATRIX mat;
...
2
votes
3answers
640 views
Cutting a Mesh in Half - DirectX
I am trying to cut a mesh in half or at least be able to delete faces from it in real-time.
How to go about doing this i wonder?
Lock the vertex buffers, memset the selected face or vertex to 0, does ...
1
vote
2answers
94 views
What format for #greyscale' render targets in directX?
I have a directx9 game engine that creates its normal adaptor with this format:
D3DFMT_X8R8G8B8
I have a system where I render some objects to an offscreen render target, as lightmaps. I then use ...
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
2answers
393 views
Format of compiled directx9 shader files?
Is the format of compiled pixel and vertex shader object files as produced by fxc.exe documented anywhere either officially or unofficially?
I'd like to be able to read the constant name to register ...
1
vote
1answer
294 views
how does the d3dx library save textures to files?
When using the function: D3DXSaveTextureToFile and passing in D3DXIFF_BMP to create a bmp I've noticed that the values seem to be estimated rather than given specifically.
Correct me if I'm wrong but ...
0
votes
1answer
42 views
Retrieving depthBuffer of a render for another render pass. (D3DX9)
I am rendering a scene to a texture, then using that texture and its depthBuffer in subsequent renderings to apply some effects (Depth Of Field, Bloom, etc...).
Here is the problem: I manage to set ...
0
votes
2answers
71 views
D3DXGetImageInfoFromFile function
Using D3DXGetImageInfoFromFile() function gives me this:
Unhandled exception at 0x004114d4 in SAMPLE.exe: 0xC0000005: Access violation reading location 0x00000000.
Here is the piece of code that ...
0
votes
3answers
62 views
does d3d has an equivalent of glxinfo?
I need to make sure my machine can create a d3d window before even trying to open it.
0
votes
0answers
12 views
Does Any one know to export plane which is model with 3d max to Height Map raw file
I've made a terrain with plane in 3dmax. But I want to use this in d3d. Fortunately I found to show terrain with height map.
But How can I make height map raw file with 3d model terrain.
0
votes
0answers
151 views
D3DXCreateTextureFromFile Error
I'm making a program involving use of D3DXCreateTextureFromFile for ID3DXSprite. The problem is, when I try to load a TGA from a directory that's not the working directory (e.g "images/image.tga") it ...
0
votes
1answer
68 views
D3DKMTCreateAllocation return code
In a driver I am debugging there is a call to D3DKMTCreateAllocation. The error I receive is int (-1071775735) or 0xc01e0009 which is of type NTSTATUS.
I am trying to figure out this error but cannot ...
0
votes
1answer
139 views
how to build Texture Coordinate Transformations Matrix in Direct3D
I know there is a function in D3D that transforms the texture coordinate:
d3dDevice->SetTransform( D3DTS_TEXTURE0, &matrix );
The problem is how I could get the matrix. For example, I now ...
0
votes
2answers
187 views
Code leaks memory, seems to be coming from ID3DXBuffer, unsure why
I load a shader with the following:
ID3DXBuffer* errors = 0; ID3DXEffect
*effect = 0;
HR(D3DXCreateEffectFromFile(
gd3dDevice, L"Shader.fx", 0, 0,
...
0
votes
1answer
522 views
C++ D3DX Font and transformations (d3d9 and d3d10 solutions needed)
I want to render font in a way that takes account of the current transforms and similar settings, especially the projection transform and viewport.
I'm thinking that the best way to do that is to ...