DirectX 9 is the 9th version of Microsoft's DirectX API, which is used to develop and handle tasks related to Multimedia, such as game programming, 3d visualizations and video on Microsoft platforms.
0
votes
1answer
20 views
how to convert XMMATRIX to D3DMATRIX in DirectX 9?
I learn DirectX (DirectX 9) from www.directxtutorial.com and using visual studio 2012 in windows 8.
d3dx9 (d3dx) replace by other header like DirectXMath, therefore I replaced all that is needed, but ...
0
votes
1answer
19 views
LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup
Googled for a couple of hours already to solve this error and found out a lot of people get this error, but haven't found a solution for my own case yet.
Most of the time the solution is to change ...
0
votes
1answer
26 views
Window resizing and scaling images / Redeclaring back buffer size / C++ / DIRECTX 9.0
C++ / Windows 8 / Win api / DirectX 9.0
I am having real big issues with this:
https://github.com/jimmyt1988/TheGame/tree/master/TheGame
Problem is that I have defined some adjust coordinate ...
0
votes
0answers
14 views
DirectX 9 - Enabling PIX
I'm trying to enable PIX to debug my D3D9 application. I am using DXUT to help manage DirectX. I have 'defined' DEBUG_VS and DEBUG_PS. On my Control Panel settings are:
Version: Retail
Enable Shader ...
1
vote
0answers
22 views
Skybox is in Perspective View
My Skybox is in perspective view, the closer i go it comes near. I have disabled the D3DRS_ZWRITEENABLE also.
Device->SetTransform(D3DTS_WORLD,GetTransform());
Device->SetRenderState( ...
0
votes
0answers
19 views
Directx9 Reset Device
I have a problem when resetting device after the state was lost. I can reset the Direct3D device but when i call OnLostDevice function on ID3DXFont i get an error.
First-chance exception at ...
2
votes
2answers
58 views
Texture repeating
I want to repeat small 2x2 pixels texture on a bigger quad, for instance, 50x50 pixels.
Set vertices -
float X = 100, Y = 100, Width = 50, Height = 50;
float TextureLeft = 0, TextureTop = 0, ...
0
votes
2answers
48 views
ACCESS_VIOLATION exception (0xC0000005) when using IDirect3DTexture9::LockRect
Using DirectX 9, I am trying to create and then fill in an LPDIRECT3DTEXTURE9 texture in the following way.
First, I create the texture with IDirect3DTexture9::CreateTexture:
LPDIRECT3DTEXTURE9 ...
2
votes
2answers
67 views
Huge amount of same textured quads
I want to draw huge amount of same textured quads (tile mapping). Textured quads will have same size and same texture coordinates but different coordinates on screen.
I use VertexBuffer and ...
1
vote
2answers
53 views
Turned off VSync but still getting 60FPS in my DirectX 9 application
I have an DirectX9 application which only renders a triangle on the screen, but I am getting a frame rate of 60 FPS no matter if I've got VSync on or not. Why is this?
Here is the code I've done to ...
0
votes
0answers
44 views
Some options on DirectX control panel was disabled on Windows 8
I am using DirectX 9.0 on Windows 8, when I open the DirectX control panel, I found some options was disabled, I am running as a administrator, so this is not an privilege issue. why this happened? I ...
0
votes
0answers
17 views
D3D9 Creating a Circle
I posted a different question earlier that gave me a bug using D3DPT_TRIANGLEFAN but I tried to recode my circle differently. Only problem is that it doesn't draw to the screen... I have tried ...
0
votes
1answer
43 views
Reflection off curved surface - HLSL
Let's say I have a flat, perfect mirror. How do I find what it's reflecting? Easy, move the camera to a position which looks back up at the angle of incidence.
Now what if that flat mirror was ...
1
vote
0answers
21 views
D3D9 DrawPrimitiveUp Bug with D3DPT_TRIANGLEFAN
Hey guys I made a Pong game in D3D9 and have noticed that at random times after messing with certain parts of the code I get this: http://prntscr.com/16obk1 (It seems I need 10 rep points)
...
0
votes
1answer
164 views
Calculation for View Matrix in C++ DirectX 9
I'm trying to create a first-person shooter camera for my DirectX game. But I'm struggling in trying to get my view matrix right. At the moment I have only got a triangle to display on the screen, but ...
0
votes
1answer
40 views
will it be easy to go from directx 9 to directx 11
I am using an old machine with windows xp on it, and xp supports only DirectX9, and i want to learn directx 11 and use it, so my question is : is it okey to begin learning directX 9 then go to 11 ...
0
votes
1answer
25 views
Move a Character on a Terrain DirectX9
I have created a terrain using a raw file and I want a character to move on the terrain.
How do i Check for collisions with the terrain ?
0
votes
0answers
22 views
Having trouble moving a reticle around the screen while following Chili's Beginning DirectX tutorial
To begin with I am using the Chili Framework for lessons 1-15 as downloadable here:
http://www.planetchili.net/
I am using DirectX 9 on an old laptop running Windows XP SP3. I have set the Direct3D ...
1
vote
1answer
23 views
d3d9 render animated cursor is slow
i use d3d9 to draw a animated cursor.
first i load the animated cursor frome a texture, and i create two 32*32 offscreen plain surface suf1_, suf2_.
every frame, i update the cursor rect in the ...
1
vote
0answers
25 views
Triggering Windows TDR (Timeout Detection and Recovery)
I'm developing a Direct3D9Ex application, and some of my users are having problems with recovery after a TDR event. In order to fix that I need to test it on my machine, but to do that I need a way to ...
0
votes
1answer
62 views
Directx9.0 Texture Mapping rendering
I would like to swap my texture on run-time on my texture (Contain sprite sheet). However, I have problem understand what is rasterizer and I don't know what kind of matrix I should pass in.
class ...
0
votes
1answer
23 views
What is the best way to have lights in Direct3D 9
The current method i use drops the fps to 30 when having 5 lights. What is the best way to have lights like in a AAA title. They have lights everywhere but runs smooth. What i use now is
...
0
votes
1answer
73 views
DirectX Release function with Textures (C++)
I have a question regarding DirectX 9, textures and releasing them.
I'm currently building a 2D game in C++. I have many textures that I'm loading with D3DXCreateTextureFromFileEx, and then when ...
1
vote
1answer
83 views
DirectX 9.0 (World Coordinates shifting my object(triangle) animation
I still new with direct 9.0. How to move my object or triangle on runtime?
According, to this tutorial.
http://www.directxtutorial.com/Lesson.aspx?lessonid=9-4-5
I understand what it does is move ...
1
vote
2answers
76 views
Game Crashing on Window Resize (Directx9)
Since adding a sprite class into a game I am working on, if the user resizes the window it crashes. I had a similar issue when rendering to the back buffer, this was resolved by using the ...
0
votes
1answer
47 views
it there any way to reset device in (slimdx, dx9) without disposing all device-related objects?
I am rendering using SlimDX to a control in a form. Since the size of that control might change very often, and there are lots of complex meshes, the traditional free-reset-construct method may be too ...
1
vote
1answer
39 views
Modifying camera location based on keypress
I have an application which renders graphics onscreen using DirectX. The default view of first person is set using the below code, setting the Y axis to 0. The code is contained within the ...
0
votes
2answers
71 views
DirectX 9 Font libraries?
I had a look at the Font class in DirectX Documentation and looked at this/these question/answers but they didn't satisdy my need.
I tried searching for "C++ DirectX 9 Font library" yet this didn't ...
0
votes
1answer
61 views
directx9 button and directx9 gui
I´m searching for a predefined class or stuct in directx, which has the functionality of a button.
I want to program a litte game and I have learned, that it is very usefull to use already existing ...
0
votes
0answers
24 views
D3DXCreateTextureFromFileEx - lock image ratio and what ratio images do i need to create
Question 1:
Is there a way to set width to screen size and then let the height automatically adjust by locking the ratio. I'm currently using D3DXCreateTextureFromFileEx.
...
0
votes
1answer
52 views
Calculate a vector between 2 D3DXVECTOR3 independent of distance
So here's my scenario: I have a spaceship game, each spaceship can target another ship and fire torpedoes and the torpedo needs a directional vector to travel along, the vector needs to be independent ...
0
votes
1answer
26 views
Declare d3ddevice global or pass into classes that require it?
DirectX 9 / C++
Do you declare d3ddevice global to your entire app/game or do you pass into classes that require the d3ddevice?
What is the usual way?
I understand it (and this may be wrong) that ...
1
vote
1answer
137 views
Drawing a rectangle in Direct X
Using the tutorial here, I have managed to get a red triangle up on my screen: http://www.directxtutorial.com/Lesson.aspx?lessonid=9-4-4
CUSTOMVERTEX OurVertices[] =
{
{ 0, 0, 0, 1.0f, ...
0
votes
1answer
34 views
SlimDX - Low Resolution in Win7 + DX9 on AMD 6350
I implemented a Visualisation a few months ago on an old XP Machine with SlimDX and an old Geforce. It worked perfectly. Now i startet the stuff on an new Computer:
Windows7
Intel I7
Amd HD6350
...
0
votes
2answers
85 views
DirectX9 How to find intersected point?
I have found intersection point's distance with function 'D3DXIntersectTri'.
Now, using distance value, how can i find that points value?
IDE: Delphi - JEDI
Language: Pascal
DirectX 9
EDIT:
...
0
votes
0answers
116 views
Managed DirectX 9.0c: Using dynamically created texture with a shader
I am very new to DirectX and 3D graphics programming in general, and I find myself in a position of having to expand some previously written Managed DirectX code.
To put it simply, we have many 3D ...
0
votes
1answer
29 views
D3DXCreateTextureFromFile just returns a pointer rather than any decent message for me?
The following code for C++ DirectX Visual Studio 2012:
HRESULT result;
sprite = NULL;
result = D3DXCreateSprite( gfx.d3dDevice, &sprite );
assert( !FAILED( result ) );
...
0
votes
0answers
32 views
Run DirectX proxy functions *after* the original functions than *before*?
I have a proxy D3D9.dll and I noticed that my DirectX::Present is called before the one from the game.
Is it possible to reverse this (first the original functions, then my functions)? Some elements ...
0
votes
0answers
80 views
DirectX 9 Mesh.DrawSubset not working as expected
I'm trying to implement texture tiling in managed DirectX 9 (I know!) so that I can use multiple textures to cover a single large mesh. I'm using Mesh.SetAttributeTable to try to define which sections ...
0
votes
1answer
80 views
My sprite is not appearing on my window, not sure where the issue is
I have supplied my DirectX project: http://www.planetchili.net/forum/download/file.php?id=830
It has to be something simple but I just don't know the API well enough to find out where the problem ...
0
votes
0answers
152 views
Howto DrawText on VMR9 IDirect3DSurface9 using IVMRSurface9
I'm trying to build an in place transform filter that is inserted into a DirectShow filter graph between the decoder and the renderer for the purpose of displaying some overlay text that changes with ...
2
votes
1answer
100 views
Can a pixel shader run more than once per pixel per draw call in DirectX 9?
If I have multiple overlapping triangles in the same draw call, is my pixel shader entered for each pixel once per primitive that covers it? Or is the depth test performed first, and the shader is ...
2
votes
0answers
178 views
Direct X 9, Getting started with texture loading and a bit of help in breaking the ice [closed]
I'm using
Visual Studio 2012 Express
DirectX SDK
DirectX 9 (I guess for backwards compatibility reasons :S, I'm just guessing)
C++
I have followed a tutorial whereby we had to create a function ...
0
votes
0answers
32 views
Add Click-Drag Function to PhysX Sample
I'm trying to add click-drag functionality to select objects within the selected area(like Windows Desktop or RTS games) to a Direct 3D Application (specifically, the sample application in the PhysX ...
0
votes
0answers
105 views
changing resolution in game on Playground SDK
I'm trying to make resolution change in my game based on Playground SDK. Now it looks so:
TPlatform::GetInstance()->SetDisplay(width, height, fullScreen, letterbox);
...
1
vote
1answer
81 views
Un/pack additional set of UV coordinates into a 32bit RGBA field
I'm modding a game called Mount&Blade, currently trying to implement lightmapping through custom shaders.
As the in-game format doesn't allows more than one UV map per model and I need to carry ...
0
votes
2answers
87 views
Restart primitive within single draw call (directx9)
I am porting openGL application wich use ability to restart triangle strip to optimize draw calls. So we can render dozens of separate object with two buffers and one draw call. In openGL index buffer ...
6
votes
3answers
514 views
Learning DirectX in 2013
I know there are several topics about this question, but I want to specifiy what Iam looking for.
So I learned OpenGL and got the basics of shaders (programmable pipeline), vertex buffers, index ...
0
votes
1answer
242 views
How can I render multiple windows with DirectX 9 in C?
I've already asked this question at http://gamedev.stackexchange.com/questions/50374/how-can-i-render-multiple-windows-with-directx-9-in-c but I have not yet received an answer.
I'm trying to render ...
0
votes
1answer
154 views
Drawing Polygon in DirectX (like GL_POLYGON)
I need to draw the following shape with DirectX 9.
In OpenGL, it can be done easily with glDrawArrays(GL_POLYGON, 0, size). However, there is no such an option in DirectX.
The problem is, that ...





