1
vote
1answer
25 views
How to get the x,y coordinate of a mouse-click with win32 C++ on a directx object?
How can I get the x,y coordinate of a mouse click, to see if it is over my menu button drawn by directx? Currently, my codebase has the following mouse-related class that doesn't seem to be able to …
1
vote
1answer
62 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 …
2
votes
3answers
49 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
3answers
47 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
30 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
1answer
41 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 …
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
1
vote
3answers
47 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
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 …
1
vote
3answers
65 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 …
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 …
1
vote
3answers
86 views
Runtime error: Access violation when using .push_back() with a std::vector?
I have a vector, defined by std::vector<LPDIRECT3DTEXTURE9> textures; Later, I am passing a LPDIRECT3DTEXTURE9 object to it, like so textures.push_back(texture); Here is a sample of this:
…
0
votes
1answer
29 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,
…
0
votes
4answers
34 views
How can i find which DIrectX version install on my system through code
How can i find the current install version of directx on my system using code(C#).
