1
vote
1answer
29 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
139 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 …
0
votes
2answers
52 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 …
3
votes
4answers
82 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
45 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 …
0
votes
2answers
110 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 …
1
vote
3answers
62 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
101 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
168 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 …
0
votes
0answers
42 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 …
0
votes
1answer
85 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.
5
votes
13answers
533 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 …
2
votes
4answers
182 views
How to Draw Two Detached Rectangles in DirectX using the D3DPT_TRIANGLESTRIP Primitive Type
I am new to DirectX and I am trying to draw two rectangles in one scene using D3DPT_TRIANGLESTRIP. One Rectangle is no problem but two Rectangles is a whole different ball game. Ye …
1
vote
2answers
104 views
HLSL Compiler error?
float4x4 matInvViewProj;
float4 GetPointPosition(float2 Tex0)
{
float4 PosImageSpace;
PosImageSpace.xy = float2(Tex0*2-1);
PosImageSpace.z = tex2D(DepthTextureSampler, …
0
votes
1answer
26 views
Are there any libraries for loading and processing/disassembling Direct3D shader bytecode?
Are there any libraries for loading and processing/disassembling the Direct3D (10,11) shader bytecode files generated by fxc?
I know that many developers (and hardware vendors) ha …
