1
vote
2answers
22 views
Multiplying by inverse matrices?
If I have a matrix which is a combination of World*View*Projection and I multiply it by the inverse of the projection does it yeild the World*View matrix or something else? If not then how can I …
0
votes
0answers
2 views
Running a WPF User control or Managed Directx control on JFrame
If I have developed a user control as mentioned in the tile and I use this http://www.ikvm.net/ to convert my .dll to a Jar file, Can I then embed that control on my JFrame? If so can you give an …
2
votes
3answers
41 views
where are the official directx forums?
I have been checking around MSDN and Microsoft.com but i can only find Archived forums. Are there any microsoft run forums for DirectX anymore?
0
votes
0answers
4 views
compiling DirectX transform (DES effect) for x64
Hello,
I've got a DirectX transform working perfectly on XP, Vista and Windows 7 32 bit. Like most DirectX transforms it compiles against part of the DirectX6 media SDK, with DirectShow headers from …
0
votes
1answer
28 views
I3D3XFont::DrawTextW - Expanding tabs wrong?
I'm wondering if it's an issue with I3D3XFont::DrawTextW, I pass it a string with \t in it, which it expands. However, it doesn't always do it correctly. If I print the same string that I pass to it, …
0
votes
3answers
44 views
Rendering multiple different textures with 1 image? (such as fonts)
Let's say I have a texture which is one file with separate 20 px by 20 px blocks. Within each of these blocks is a new character and I'd like to render different characters on screen as textures …
0
votes
1answer
20 views
Strange error with hardware picking in directx
Hi all,
i am trying to get pickigng working in directx 9 and i am having some trouble. it works fine when i am rendering my mesh in software however i do get errors when rendering with a shader.
i …
0
votes
3answers
73 views
Matrix classes Directx & OpenGL
I have the following C++ matrix class:
transform.h transform.cpp
I am using this coupled with a renderer, for which there is an opengl and a directx implementation.
I have a test example where the …
0
votes
1answer
40 views
Hiding the Cursor
I have a windows program with directx/opengl renderers, and a custom mouse rendered as a quad. The program currently runs windowed.
The problem is the standard windows mouse is overlaid ontop of my …
1
vote
3answers
63 views
How do you set up a menuing system (clickable buttons) in C++/directx?
I'm lead to believe that function pointers are going to be needed to assign functions to the images that will be used as buttons somehow, but I can't find any decent resources on this.
How can you …
1
vote
3answers
46 views
HLSL DirectX9: Is there a getTime() function or similar?
Hi all.
I'm currently working on a project using C++ and DirectX9 and I'm looking into creating a light source which varies in colour as time goes on.
I know C++ has a timeGetTime() function, but …
0
votes
1answer
50 views
play avi using c++
i want to play an avi file using c++ and direct X with a mfc interface
0
votes
1answer
28 views
textureMappingu/v in common Vertex structures?
Looking through some directx examples, I'm often seeing the structure for a vertex to be defined as such:
struct Vertex
{
vector position;
vector normal;
int textureMappingu;
int …
0
votes
1answer
11 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,
…
2
votes
2answers
67 views
How to store a vector of LPD3DXSPRITE objects?
Let's say I want to store a vector of LPD3DXSPRITE objects. The line to declare this code would be std::vector<LPD3DXSPRITE> sprites; I should be able to create my sprite with:
LPD3DXSPRITE …
