Tagged Questions
DirectX 11 is the 11th 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. DirectX 11 runs on Windows Vista and Windows 7.
7
votes
2answers
244 views
Typical rendering strategy for many and varied complex objects in directx?
I am learning directx. It provides a huge amount of freedom in how to do things, but presumably different stategies perform differently and it provides little guidance as to what well performing usage ...
7
votes
3answers
3k views
Where can I find some in-depth DirectX 11 tutorials?
So far the only tutorials I've been able to find are on directx11tutorials.com, which are essentially inferred from the existing samples. Does anyone know where to find other tutorials, or better yet ...
4
votes
1answer
378 views
DirectX11: Pass data from ComputeShader to VertexShader?
Is it possible to apply a filter to the geometry data that is to be rendered using Compute Shader and then use the result as an input buffer in the Vertex Shader? That would save me the trouble ...
4
votes
1answer
1k views
What is the best pratice to render sprites in DirectX 11?
I am currently trying to get used to the DirectX API and I am wondering what is the usual approach to render a sprite in DirectX 11 (e.g. for a tetris clone).
Is there a simmilar interface as ...
4
votes
4answers
2k views
Should I create CUDA apps now, or wait for DirectX 11?
With Windows 7 probably going to RTM next October (and DirectX 11 with it), would it be worth waiting for DirectX 11's explicit GPGPU features, meaning it will be cross-platform (ATI/Nvidia, not ...
3
votes
0answers
123 views
Why is D3D10SDKLayers.dll loaded during my DX11 game?
SEE EDIT UPDATES BELOW. Original question has been modified!
I have a working window that uses a DX11 device. My problem comes along when I try to go fullscreen using Alt+Enter. If the window is not ...
3
votes
1answer
660 views
Programmatically creating directx 11 textures, pros and cons of the three different methods
The msdn documentation explains that in directx 11 there are multiple ways to fill a directx 11 texture programmatically:
(1) Create the texture with default usage texture and initialize it with data ...
3
votes
1answer
237 views
HLSL error X3086: DX9-style 'compile' syntax is deprecated in strict mode
Hey,
I get this error:
error X3086: DX9-style 'compile' syntax is deprecated in strict mode
When compiling a directx effect with this code:
hr=D3DX11CompileFromFile( TEXT("shaders\\basic.fx"), NULL, ...
2
votes
2answers
148 views
Access violation in DirectX OMSetRenderTargets
I receive the following error (Unhandled exception at 0x527DAE81 (d3d11_1sdklayers.dll) in Lesson2.Triangles.exe: 0xC0000005: Access violation reading location 0x00000000) when running the Triangle ...
2
votes
1answer
247 views
Mapping dynamic texture causing “Already Mapped Error”
I just starting using Direct3D11 and I am trying to create a dynamic texture that I plan to update with new data several times a second. My issue is that every time I update the texture with the new ...
2
votes
1answer
69 views
In directx, if reuse a slot does gpu keep previous resource in its memory? Also can orignal procesor resources be safely altered?
I was writing this question about directx and the following questions were part of it, but I realized I needed to seperate them out.
If something isn't in a "slot" (register) on the GPU, will it have ...
2
votes
2answers
368 views
D3D11: How to draw GDI Text to a GXDI Surface? (Without D2D)
I need some help with drawing a text to a texture with GDI and D3D11. I tried using D2D/DirectWrite, but it supports just D3D10 and not D3D11 as I need. Everything I tried failed so far...
Now I want ...
2
votes
2answers
597 views
D3D11: How to draw a simple pixel aligned line?
I tried to draw a line between two vertices with D3D11. I have some experiences in D3D9 and D3D11, but it seems to be a problem in D3D11 to draw a line, which starts in one given pixel and ends in an ...
2
votes
2answers
2k views
How do you draw text in DirectX 11?
In DirectX 10 you could use the font interface provided by D3DX10. In DirectX 11 you are supposed to use DirectWrite. But it looks like DirectWrite doesn't speak natively to Direct3D? Is there ...
2
votes
1answer
161 views
DirectX11 and packetoffset
Does anyone know how to use "packetoffset" with a bool type in DirectX10/11? I am not sure how this should be aligned
cbuffer SomeBuffer : register( b1 )
{
float3 SomeFloat3: packoffset(c0);
...
2
votes
2answers
745 views
How to debug DirectX 11 Compute Shaders?
I've started using DirectX 11 Compute Shader technology for GP-GPU programming. I had written quite a complex program on HLSL and when I wanted to debug it, I realized that PIX utility from DX SDK ...
1
vote
1answer
40 views
DirectX 11 D3DXMatrixTranslation continues to run?
I want to bind moving an object to a button press. When I press the button, the object vanishes quickly and appears as if the first Translation was always running. Then when I let go of the button, it ...
1
vote
0answers
50 views
DirectX 11 Adding Object to Terrain - Rastertek Tutorial
I've been working my way through the Rastertek DX11 Terrain Tutorials getting to "Tutorial 6: Height Based Movement" Ive read through it and created, complied etc and the tutorial itself is working ...
1
vote
3answers
203 views
Does DirectX 11 support .NET?
Can I use DirectX 11 from C# app?
Need to use DirectSound from WPF application. .NET 4 W7 x64
1
vote
1answer
313 views
DirectX 11 SwapChain::Present issue
I've quite the weird problem at my hand here.
I'm using directx 11 to make my own game framework/engine and it has worked fine until i tried to implement frustum culling which gave me really weird ...
1
vote
1answer
320 views
Is there a good DirectX (3D) DirectWrite tutorial somewhere?
I'm refactoring some of my directx10 code to directx11 and trying to figure out DIrectWrite for my text functions. From MSDN, I hear that they're switching everything to this and that directwrite is ...
1
vote
2answers
264 views
DirectInput8Create fails : E_INVALIDARG
I'm using DirectInput with Direct3D 11, and compiling for x64 and I get an E_INVALIDARG from this line:
HRESULT hr = DirectInput8Create(hInstance, DIRECTINPUT_VERSION, IID_IDirectInput8, ...
1
vote
3answers
1k views
SlimDX and WPF (DirectX 11)
I want to use SlimDX (DirectX 11) to render the contents of an Image in WPF.
The problem is that I can't find a way to link the SwapChain to a D3DImage. (The DirectX 11 example uses the SlimDX ...
1
vote
3answers
706 views
SlimDx FullScreen Switching Problem to Window Mode
// handle alt+enter ourselves
form.KeyDown += (o, e) =>
{
if (e.Alt && e.KeyCode == Keys.Enter) {
bool Full;
Output ThisOut;
...
1
vote
2answers
236 views
DirectX: “see through” polygons
I've created a simple DirectX app that renders a field of vertices. Vertices are rendered like this (if viewed from top):
|\|\|\|\|
|\|\|\|\|
Each triangle is rendered like this:
1
|\
2 3
Which ...
1
vote
2answers
370 views
Can't create Direct2D DXGI Surface
I'm calling this method:
http://msdn.microsoft.com/en-us/library/dd371264(VS.85).aspx
The call fails with E_NOINTERFACE. The documentation is especially unhelpful as to why this may happen. I've ...
1
vote
3answers
282 views
Can I develop DirectX applications using C#
I want to know if I can develop graphics application with DirectX using C#?
1
vote
1answer
420 views
Using the DirectX 11 SDK, How do I load a video (with sound) and play it?
I am having problems locating any documentation or examples for rendering video on a form using DirectX. I need to use DirectX because I will be putting overlay's on the video loaded dynamically. I ...
1
vote
1answer
274 views
NURBS on DirectX 11?
Can you render NURBS on the GPU with DirectX 11? I've been reading up on current trends to rendering surfaces like these, but I don't see anything on NURBS.
I found some related references, but ...
1
vote
2answers
1k views
Basic DirectX11 problem, code crashes as soon as I begin drawing anything to the screen. Also help with Netbeans configuration
So, I started programming in DirectX11 today, I've had a lot experience with coding, but not specifically DirectX, so I went and look at some tutorials. All was going swell, I could initialize a ...
1
vote
1answer
341 views
How do you display something using directX 11 compute shader?
I am wanting to write to a texture from my directX 11 compute shader. However I have no idea how to display this onto the screen nor am I sure what sort of buffer I should be using to do this.
1
vote
5answers
550 views
DirectX 11 Compute Shader - not writing all values
I am trying some experiments in fractal rendering with DirectX11 Compute Shaders.
The provided example runs on a FeatureLevel_10 device.
My RwStructured output buffer has a data format of ...
1
vote
2answers
908 views
DirectX Device CAPS
I read the following in the DirectX 10 documentation:
"Legacy hardware capability bits (caps) have been removed in favor of a rich set of guaranteed functionality, which targets Direct3D 10-class ...
1
vote
3answers
4k views
Are there any DirectX 11 programming books? [closed]
Anyone know any DirectX 11 programming books that have been printed already? or there will be soon? I'd like to buy one or preorder but haven't found one anywhere ...
0
votes
1answer
45 views
Why does my low level windows key hook stop working?
This is a continuation of my original question
Why is D3D10SDKLayers.dll loaded during my DX11 game? I am creating a DX11 game and am using a low-level windows key hook to capture Alt+Enter so that I ...
0
votes
1answer
52 views
How to compile a DirectX 11 app in MinGW
I've looked, and I can't find any material relating to using Direct3d 10 or 11 with MinGW. What do I have to do to get things working? I'm getting errors in the header files supplied by the DX SDK.
...
0
votes
0answers
54 views
How can I set the view / world matrices in SlimDX / DirectX11
I'm trying to implement a simple FPS camera, that I have brought over from an older XNA Project, in SlimDX.Direct3D11. I have no idea how to set the resulting view matrix, or any matrix for that ...
0
votes
2answers
34 views
ClipCursor is not working
I am working on a DX11 game, and I want to clip the cursor during fullscreen mode to the fullscreen window. I use this method
void MyClass::_SetupCursor( BOOL bFullscreen ) {
// Clip cursor if ...
0
votes
2answers
30 views
Does IASetInputLayout check to see if you pass an already set input layout?
I am designing a game engine in DirectX 11 and I had a question about the ID3D11DeviceContext::IASetInputLayout function. From what i can find in the documentation there is no mention of what the ...
0
votes
1answer
32 views
DX10 Mesh::DrawSubSet
I'm dabbling in DX11, and I noticed that there is no ID3DX11Mesh like there was a ID3DX10Mesh in DX10.
I imagine this could be due to one of two things, either ID3DX10Mesh did not neet replacing, ...
0
votes
1answer
53 views
Usage of DirectX 10.0 or 11.0 Vertex or Pixel Shaders other than Draw() API call within graphics driver
Our project is to profile the various Vertex and Pixel, Geometry shaders used within DirectX 10 or 11 SDK application or with Game (BioShock, Far Cry etc..) applications.
Now we need an technical ...
0
votes
2answers
128 views
Directx 11 depth test not working
I cannot get my program to correctly choose which models to place in front. I have followed the MSDN code exactly. My code appears to correctly draw all polygons in a particular call of DrawIndexed, ...
0
votes
2answers
157 views
What function is called when Alt-Enter is pressed?
I have a game app that has the ability to go fullscreen and back to windowed when Alt-Enter is pressed. However, when it goes fullscreen, I get the following warning from DirectX:
DXGI Warning: ...
0
votes
0answers
42 views
Rendering points with a size greater than 1
I'm attempting to render a list of points and in my vertex shader I have an output with a PSize semantic. However, it seems to be ignored, as the points are still single pixel. Even if I hard code it ...
0
votes
0answers
124 views
Kinect - Depth stream + video stream into DirectX11 texture
I am following the Kinect SDK tutorial and it seems to be working fine so far,
the problem I am having is that it uses DirectX9 for the renderer and I wish to use DirectX11.
I managed to get the ...
0
votes
1answer
56 views
Controling GPU with shader model 2 from DirectX11 API
Is it possible to somehow control gpu with shader model 2.0 via DirectX 11 API?
Use case is this: We have two types of render written in directx9. First is legacy for old GPUs and second is high ...
0
votes
1answer
102 views
shader.hlsl file causes error?
I'm working on trying to get this DirectX11 proj to load a triangle on the screen that uses a shader.hlsl file to color the triangle based on the positions within the triangle (it is a multi colored ...
0
votes
2answers
357 views
d3dx11.h missing?
So I've reinstalled directx11 a couple times and even went to the Microsoft website and got the SDK pack that has all the direct x cabinet files in it. Anyone have any idea why i keep getting this ...
0
votes
1answer
135 views
In DirectX 11, how to create and register two buffers in SwapChain (DXGI_SWAP_CHAIN_DESC)
I am a beginner of DirectX 11, and following the book Beginning DirectX 11, in chapter 2, there is a code for creating a buffer using the following code:
DXGI_SWAP_CHAIN_DESC swapChainDesc;
...
0
votes
2answers
354 views
DirectX (should it be DirectX 11?) books and resources for beginners [closed]
I want to start learning DirectX, I have some experience with OpenGL and Unity3D game engine and i am not a beginner of C++ programming. There are a lot of resources and books available, but ...