0
votes
1answer
26 views
DirectX and WPF
Hi,
I am trying to develop an application where the UI part is designed by WPF and the engine is developed using C++.
I am trying to render a scene using DirectX in native code by getting the …
0
votes
2answers
24 views
How to create a module that reads the frame buffer, and saves the content as an image.
In Windows, there seems to be at least two ways to get to the frame buffer: GDI and DirectX.
The problem is that in order to use GDI or DirectX, it seems that you must be running a GUI application, …
2
votes
2answers
36 views
2D rendering with per-pixel lighting/normal map - directX
hiya.
I'm looking for the simplest, easiest and fastest technique to render 2D textured quads with per-pixel normals.
what i mean is a 3D world where the camera is fixed and all the texture quads are …
0
votes
2answers
36 views
DirectX: How do you initialize the vertex buffer and index buffer for a cone?
How do you initialize the vertex buffer and index buffer for a cone in DirectX 9 in C++?
0
votes
2answers
29 views
C++ function to do DxDiag “Direct3D Acceleration” detection
Hello, Microsoft DxDiag can detect whether a system has "Direct3D Acceleration".
If the system has not the capability, DxDiag will write "Direct3D Acceleration not available" and will write in the …
0
votes
2answers
36 views
Rendering a point light using 6 spot lights?
I'm trying to render 6 spot lights to create a point light for a shadow mapping algorithm.
I'm not sure if I'm doing this right, I've more or less followed the instructions here when setting up my …
1
vote
1answer
23 views
DirectX having a sphere orbit a point at a given distance, over time.
I'm trying to make a basic model of the solar system in Direct X. I want to have the planets orbit the sun and the moon orbit the planets. So I have the planet/star/moon which takes a pointer to it's …
0
votes
1answer
22 views
What might cause IDirectDraw::GetCaps returns DDERR_INVALIDPARAMS?
Hello, I have this little snippet of code with IDirectDraw::GetCaps returning DDERR_INVALIDPARAMS (a.k.a. E_INVALIDARG, a.k.a. 0x80070057).
The loaded dll is ddraw.dll 5.03.2600.5512 …
0
votes
1answer
27 views
Check when the application has gone fullscreen. (DXGI/DirectX10)
Hi, this is my question...
There is a way to check when the application has gone fullscreen in DXGI (DX10/11).
For going Fullscreen I mean that the system has COMPLETED the mode change.
Cause i need …
1
vote
2answers
76 views
API to get the graphics or video memory
Hi,
I want to get the adpater RAM or graphics RAM which you can see in Display settings or Device manager using API. I am in C++ application.
I have tried seraching on net and as per my RnD I have …
1
vote
5answers
228 views
Who can tell me what this bit of C++ does?
CUSTOMVERTEX* pVertexArray;
if( FAILED( m_pVB->Lock( 0, 0, (void**)&pVertexArray, 0 ) ) ) {
return E_FAIL;
}
pVertexArray[0].position = D3DXVECTOR3(-1.0, -1.0, 1.0);
…
3
votes
2answers
81 views
DirectShow IVideoWindow and Fullscreen--Can I write to my D3D Primary Surface?
Writing a game, and I'd like some cutscenes in the middle. In windowed mode, the DirectShow classes work perfectly and are easy to use. But when the game is fullscreen, I can't get DirectShow to show …
1
vote
3answers
67 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
83 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 yield the World*View matrix or something else? If not then how can I …
0
votes
0answers
13 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 …
