Tagged Questions

Direct3D is a high-performance, COM-based API for accessing graphics hardware (GPUs) in a device-independent way on Microsoft platforms.

learn more… | top users | synonyms (1)

72
votes
16answers
3k views

How are 3D games so efficient?

There is something I have never understood. How can a great big PC game like GTA IV use 50% of my CPU and run at 60fps while a DX demo of a rotating Teapot @ 60fps uses a whopping 30% ? Thanks
17
votes
8answers
5k views

OpenGL still better than Direct3D for non-games?

The standard model has been that OpenGL is for professional apps (CAD) and Direct3D is for games. With the debacle of openGL 3.0, is openGl still the natural choice for technical 3D apps (cad/GIS)? ...
14
votes
1answer
121 views

What happens during a display mode change?

What happens during a display mode change (resolution, depth) on an ordinary computer? (classical stationarys and laptops) It might not be so trivial since video cards are so different, but one thing ...
14
votes
6answers
10k views

How well does WPF blend with XNA in real life?

I understand that there are several ways to blend XNA and WPF within the same application. I find it enticing to use WPF for all GUI and HUD stuff in my XNA games. Does anyone have any practical ...
13
votes
4answers
4k views

Why Direct3D application performs better in full screen mode?

The performance of a Direct3D application seems to be significantly better in full screen mode compared to windowed mode. What are the technical reasons behind this? I guess it has something to do ...
11
votes
5answers
2k views

3D Character/Model Creator

I'm in a project to create a 3d game using XNA/C#, and the game will use a lot of 3d characters. Looking at the current 3d games, in some they create near to hundreds of characters, what lead me to ...
10
votes
7answers
8k views

Polygon Triangulation with Holes

I am looking for an algorithm or library (better) to break down a polygon into triangles. I will be using these triangles in a Direct3D application. What are the best available options? Here is what ...
9
votes
3answers
930 views

Direct3D 11 effect files deprecated?

I've been playing around with Direct3D 11 a little bit lately and have been frustrated by the lack of documentation on the basics of the API (such as simple geometry rendering). One of the points of ...
7
votes
2answers
1k views

Multi-monitor 3D Application

I've been challenged with a C++ 3D application project that will use 3 displays, each one rendering from a different camera. Recently I learned about Ogre3D but it's not clear if it supports output ...
6
votes
6answers
3k views

Should I use DirectInput or Windows message loop?

I'm working on a C++ DirectX 2D game and I need keyboard and mouse input. Wikipedia says: Microsoft recommends that new applications make use of the Windows message loop for keyboard and mouse ...
6
votes
6answers
465 views

OpenGL for space simulators

with a few friends we started this amateur platform-independent java-based project for a space combat simulator game (something like the long dead saga of wing commander). None of us though is a 3D ...
6
votes
4answers
1k 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?
6
votes
13answers
989 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 largest hold-up to doing ...
5
votes
4answers
115 views

Which 3D graphics toolkit should I use to build a simple 3D Globe with country outlines and other overlays?

I want to build a 3D globe in my C# application. I will have to put the outlines of the countries on the globe along with some other simple polygon overlays I'll have to draw. The mouse interaction ...
5
votes
4answers
180 views

Begining 3D programming / OpenGL

I'm fairly familiar with C / C++ / java, but I have mostly only ever done command line programming (with the exception of GUI in java). I am really interested in 3D programming, but the problem I am ...
5
votes
1answer
110 views

Why doesn't Direct3D have it's own vertex structure?

I've always wondered the reasoning behind why we must always define D3DVERTEX. Is it because Microsoft wants to allow the opportunity to put this in a class and overload operators, or is there another ...
5
votes
1answer
2k views

What are all the different HLSL sampler types for?

I'm working with DX9/SM3 at the moment, and the MSDN documentation on HLSL samplers seems to be sorely lacking in explaining how to use the different sampler types. What's worse is they try to cover ...
5
votes
3answers
434 views

CoreImage for Win32

For those not familiar with Core Image, here's a good description of it: http://developer.apple.com/macosx/coreimage.html Is there something equivalent to Apple's CoreImage/CoreVideo for Windows? I ...
5
votes
3answers
653 views

Can you render a Direct3D window for one process into another process' HWND?

What I want to do is have a Windows application launch another Direct3D application and have the Direct3D application render into a control provided by the parent process. Is this even possible? ...
4
votes
1answer
269 views

fastest method to capture game screen shots in c#?(more than20 images per second)

How can i make screenshoots to the entire game screen very fast? Somthing like 20-30 per second?(i want to convert them to video) [[1]] I've tried WMEncoder.Results were that WMEncoder can capture ...
4
votes
3answers
214 views

Is there any advantage to using C++ instead of C# when using Direct3D?

Is there any advantage to using C++ instead of C# when using Direct3D? The tutorials I've found for C++ and DirectX all use Direct3D (which to my knowledge is managed). Similarly, all of the C# ...
4
votes
1answer
365 views

Algorithm to project 2D/3D objects onto a plane (Augmented Reality)?

I'm working on a project about Augmented Reality using a marker (which is a chessboard) that takes images from webcam and insert a 2D/3D object onto the chessboard plane(realtime) . By using openCV i ...
4
votes
1answer
432 views

WPF-DirectX Interop Problem (D3DImage)

I'm writing a Video application utilizing D3DImage. Frames are from memory and rendered as textures in native code with DirectX9, finally exposed by D3DImage to the WPF GUI. I have some Overlays on ...
4
votes
4answers
468 views

From Direct3d to OpenGL

I currently rewrite an old Visual Basic application in java, a large part of the work involves replacing Direct3d with jogl. Since I have no experience in dealing with Direct3d and only minimal ...
4
votes
2answers
848 views

WPF window resizing - no preview / show rubber band

Is there a way to force a WPF window to use a rubber band (no live preview of contents during resize) when resizing? I realize this is usually a user preference on Windows but my application uses D3D ...
4
votes
5answers
712 views

Graphics Profiling

Ive got an application which drops to around 10fps. I profiled it with xperf which showed my app was using just 20% of the CPU, with none of my methods using a larger than expected amount of that 20%. ...
3
votes
1answer
40 views

Unable to make double calculations after D3D device created

I'm writing a D3D application which uses DXUT for initializing device and handling all the events. Though, I found a weird behavior: once I create a device all the double precision calculation in the ...
3
votes
1answer
71 views

Difference between angled brackets and parentheses in HLSL texture samplers

Is there any important difference between using parentheses and angled brackets for texture sampler parameters? I have used them interchangeably before without any different effect. For instance ...
3
votes
1answer
233 views

Direct3D11(C++): Updating Texture coordinates in constant buffer?

I'm trying to make a rather basic 2D Engine with Direct3D. I made a LoadImage() function which stores all the rather static behaviour of the image in an object. (Shaders, Vertexbuffers, Samplers etc) ...
3
votes
1answer
417 views

C# Capturing Direct 3D Screen

I have been fooling around with screen capture for awhile now and I managed to capture the entire screen, certain areas on the screen etc... But when I go into a game and try to capture the screen, ...
3
votes
4answers
147 views

How exactly does memory handling (i.e, the function Release) work with Direct3D?

I came across a leak in a Direct3D application of mine, and I ended up correcting it, but I think the cause of the leak was due to my misunderstanding of how Direct3D handles its memory and ...
3
votes
4answers
163 views

Why does Direct3D work only on Windows?

What is the Direct3D? It is an API, is not it? Is it implemented by Windows or by graphics cards? If the graphics cards implement the Direct3D API, why can not other operating systems use Direct3D ...
3
votes
2answers
239 views

Initializing D3D9 causes a 3rd-party library to stop working

First, the general situation... a 3rd-party library loaded through a DLL does rendering into a HWND. It's simple 2D rendering and is not directly using D3D in a way I can see - a dependency walk on ...
3
votes
0answers
151 views

Direct3D app screws up XULRunner

I have an app using a render engine which can switch between D3D and OpenGL (on Windows at least!) We also use XULRunner for embedded web-browser functionality. XULRunner also appears to use D3D and ...
3
votes
2answers
1k views

Direct3D: efficient way to get system memory bitmap from IDirect3DSurface9 (default pool)?

I have IDirect3DSurface9, default pool, YUV format. How can I efficiently get bitmap bits from it? At the moment I: create render target: device->CreateRenderTarget(surf_desc.Width, surf_desc.Height, ...
3
votes
2answers
290 views

Multiplying matrices

What is the difference between the two pieces of pseudo-code? // Multiplying a matrix by the difference between each frame float difference = current - previous; // Time since previous frame float ...
3
votes
2answers
507 views

Direct3D - How do I calculate Roll from View Matrix?

Hey guys, this one's been eating up my entire night, and I'm finally throwing up my hands for some assistance. Basically, it's fairly straightforward to calculate the Pitch and Yaw from the View ...
3
votes
3answers
304 views

Rotating a model in 3D: Suggestions for center of rotation

I need to allow the user to pan, rotate, zoom in/out of my scene in 3D which uses a parallel projection. Panning and zooming in/out has been pretty straight forward. However, when using the mouse for ...
3
votes
3answers
699 views

C# : Direct3D in a control, AND fullscreen on a secondary monitor - what's the best way?

I'm working on a C# application that needs to use Direct3D in a control in a windows form, AND (at the same time) fullscreen on a secondary monitor. Basically, I want a Windows Forms application on ...
3
votes
2answers
1k views

Disable alt-enter in a Direct3D (DirectX) application

I'm reading Introduction to 3D Game Programming with DirectX 10 to learn some DirectX, and I was trying to do the proposed exercises (chapter 4 for the ones who have the book). One exercise asks to ...
3
votes
2answers
568 views

Recommended books for Direct3D programming [closed]

What good books are there for learning 3D graphics programming (DirectX 9) ? I'm also interested in a book about pixel/vertex shaders. I've done some 3D graphics about two years ago using WPF, but I ...
3
votes
1answer
347 views

How can I determine which displays are attached to the same physical device using Direct3D9?

Using Direct3D9, I can count the available adapters using IDirect3D9::GetAdapterCount(). However, this returns the number of outputs, i.e. 2 for a single dual-head graphics card. Using Win32 API, I ...
3
votes
6answers
2k views

Managed Direct3D or XNA for non-game related 3D graphics programming?

Which is the preferred approach for doing .NET 3D graphics programming: Direct3D or XNA seem to be the current technologies, but which is best for non-game related programming? Also, has Managed ...
3
votes
1answer
968 views

Web Browser in a fullscreen Direct3D application

I need to have a working web browser in a fullscreen Direct3D application. For example, Valve's Source-based games (sort of) do it in the MotD window when you join a server. Any tips on where to ...
3
votes
2answers
656 views

How do I make the lights stay fixed in the world with Direct3D

I've been using OpenGL for years, but after trying to use D3D for the first time, I wasted a significant amount of time trying figure out how to make my scene lights stay fixed in the world rather ...
3
votes
2answers
360 views

c++ Having multiple graphics options

Currently my app uses just Direct3D9 for graphics, however in the future I' m planning to extend this to D3D10 and possibly OpenGL. The question is how can I do this in a tidy way? At present there ...
2
votes
1answer
44 views

Is it possible to view the back buffer while it is being drawn?

Using breakpoints, I'm trying to figure out the working of a complex app which uses DirectX buffers. I see many places where the Blt command draws to the back buffer/surface, and I need to know what ...
2
votes
2answers
87 views

3d (Direct3D) in WinForms - but .NET 2.0

Question is similar to: 3D in WinForms? But - project is written in .NET 2.0 using c#. Here is the screenshot, to avoid 1000 words: This is done with GDI+. To be able to go further, I am ...
2
votes
1answer
174 views

Direct3D11(C++): Rendering (basic) question

I've been following a book about basics for game programming with D3D11. I now understand the absolute basics of Direct3D :) but... I have a question. In the book, I always had to make one demo at a ...
2
votes
1answer
132 views

CUDA and Direct3D interoperability in WPF applications

I try to realize WPF application using CUDA calculations and Direct3D 9 graphics. So I use following approach: I create WPF application using MSDN "Walkthrough: Hosting Direct3D9 Content in WPF" ...

1 2 3 4 5 8