1
vote
1answer
22 views
D3D Performance comparison, shaders vs built in shading
Hi there.
I have a running 3D engine built in D3D (via SlimDX). To avoid interupting the rendering pipeline I have batched together many objects with the same material into bigger …
0
votes
1answer
23 views
Unable to use SetTransform in D3D9
What might stop IDirect3DDevice9::SetTransform from working? I've looked at alot of tutorials for using transformation matrices in Direct3D9, including this one here. And as far as …
0
votes
1answer
25 views
No thumbnails showing in Aero flip/thumbnail for full screen direct3d 9 application
I'm sure this is on the web somewhere, but I'm having trouble with the search terms (getting lots of non-relevant stuff.) Anyway, I've got a Direct3D9 application. When it runs in …
1
vote
1answer
48 views
Drawing targetting circle in 3d application
I'm working on a 3d game just for learning.
I have a 3d world generated from a heightmap and various mesh based objects overlayed onto that world.
I want the player to be able to …
0
votes
2answers
178 views
Direct3D rendering 2D images with “multiply” blending mode and alpha
I'm trying to replicate the Photoshop filter multiply with Direct3D. I've been reading and googling about the different render states and I've got the effect almost working. The pr …
3
votes
4answers
103 views
Multiple meshes in one vertex buffer?
Do I need to use one vertex buffer per mesh, or can I store multiple meshes in one vertex buffer? If so, should I do it, and how would I do it?
0
votes
2answers
60 views
Project a grid in screenspace on the world xz plane.
Hi,
I want to project a grid on the xz-plane like shown here:
http://habibs.files.wordpress.com/2009/07/2-1.jpg
To do that, I created a vertex grid with x and z range [-1|1]. In …
0
votes
2answers
147 views
Direct3d/C# - Blur area under a rectangle drawn on a sprite
Any idea how to do it? I am drawing a rectangle that is supposed to be a half-transparent window. I managed to do the transparency by drawing a half-transparent texture, but I also …
0
votes
2answers
59 views
Sharing a texture between direct3d and opengl?
I know mixing OpenGL and DirectX is not recommended but I'm trying to build a bridge between two different applications that use separate graphics API:s and I'm hoping there is a t …
1
vote
3answers
89 views
Direct3D Texture Post-Processing/Copying
So I'm trying to implement some Direct3D post-processing, and I'm having issues rendering to textures. Basically, my program looks like this:
// Render scene to "scene_texture" ( …
2
votes
2answers
109 views
Why won’t Direct3D recover after unplugging a monitor in Windows XP?
An interesting bug came up that I'm having no luck with. In a windowed Direct3D9 program using native code, I handle a device lost using something similar to the following:
void …
0
votes
3answers
179 views
Combining Direct3D, Axis to make multiple IP camera GUI
Right now, what I'm trying to do is to make a new GUI, essentially a software using directX (more exact, direct3D), that display streaming images from Axis IP cameras.
For the tim …
5
votes
13answers
555 views
Would it be possible to write a 3D game as large as World of Warcraft in pure Python?
Would it be possible to write a 3D game as large as World of Warcraft in pure Python?
Assuming the use of DirectX / D3D bindings or OpenGL bindings.
If not, what would be the larg …
0
votes
1answer
101 views
DirectX 9 or 10 Overlay
Hi,
How is it possible to draw an overlay over an game with DirectX 9 or 10?
I found code with depricated DirectShow code, but it will not run.
Thanks for tipps.
0
votes
0answers
56 views
Mouse click detection and Transformation2D in Direct3D
I use Sprites to draw images in a D3D window. I draw an image on every sprite within a rectangle (0, 0, width, height) and use Matrix.Transformation2D to place the image in the ren …
