Direct3D is part of Microsoft's DirectX application programming interface (API), which performs 3d graphics rendering in games, simulations etc. Direct3d11 is the 11th version of DirectX API released with DirectX 11. Direct3D is used to render three dimensional graphics in applications where ...
4
votes
2answers
82 views
Freeing resources in D language
When using Direct3D in c++ I can write a "Cube" class for example, that contains a "ID3D11Buffer* vertexBuffer_" and ensure that the destructor for that Cube object calls vertexBuffer_->Release().
I ...
3
votes
1answer
260 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)
...
2
votes
1answer
136 views
Writing a HLSL4 pixel shader to perform a lookup from a 2Dtexture
I'm a beginner pixel shader writer and I'm running into some trouble. I want to take a 256x256, 16-bit input (DXGI_FORMAT_R16_UINT) image, and pass it through a 256x256 look-up texture ...
2
votes
1answer
200 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
137 views
How many vertex buffers is too many?
Newer API's like D3D11 force use of vertex buffers.
You can use static (contents don't change) or dynamic vertex buffers (contents can be updated and changed by CPU).
My question is, how many vertex ...
2
votes
1answer
174 views
DrawPrimitiveUP in d3d11
Just checking, but it appears D3D9's DrawPrimitiveUP / any method of drawing WITHOUT a vertex buffer has been all but stripped out of D3D11.
Is there a way to draw in D3D11 that does not use a vertex ...
1
vote
1answer
178 views
What's the tie up ID3D11DeviceContext::PSSetShaderResource()
PSSetShaderResource()'s first parameter:
void PSSetShaderResources(
[in] UINT StartSlot,
[in] UINT NumViews,
[in] ID3D11ShaderResourceView *const *ppShaderResourceViews
);
StartSlot: ...
1
vote
0answers
81 views
How to make an overlay
I'm wondering how I can create an overlay with Direct3D11 (C++).
(Like the xfire game chat that renders content over another program in fullscreen)
I know the basics of Direct3D11, but I have no idea ...
1
vote
0answers
85 views
How to draw lines with a certain amount of thickness
What is the best way to draw lines with a variable amount of thickness in the new Direct3D?
1
vote
1answer
144 views
How to present to a different window using IDXGISwapChain and ID3D11Device/ID3D11DeviceContext?
Previously, when I've built tools, I've used D3D version 9, where the call to Present() can take a target window and rectangle, and you can thus draw from a single device into many different windows. ...
1
vote
1answer
143 views
Changing a single state setting in D3D11
It would seem that D3D11's api is a bit clunky, or I'm not using it right.
Is it true that this is the minimum set of steps to change a single rasterizer state in D3D11 (I'm using change to wireframe ...
0
votes
0answers
7 views
D3D11 Drawing separate objects
Recently I've started to learn D3D11 from scratch, and encoutered a problem:
Maybe this is a stupid question, but how to draw separate objects on the screen with different primitive topologies. Do I ...
0
votes
0answers
32 views
Every DirectX SDK based application runs slow
Out of nowhere, every directx application project I run gives me only 4fps and I am clueless as to why this is happening...? All of the samples, tutorials from websites, basic directx programs (such ...
0
votes
0answers
9 views
Row and column index of fragment, HLSL shader
Can you get the row and column of the current fragment in an HLSL (DX11) fragment shader?
0
votes
1answer
102 views
Can you look sample a texture in a vertex shader?
In shader model 3.0, I'm pretty sure this was a no but I want to ask this anyway,
In shader model 5.0, can you sample a texture in a vertex shader?
If I want to make large amounts of supplementary ...
0
votes
0answers
20 views
Efficient way to render multiple views of the same scene
I have a render to texture operation that renders the same scene with 5 different views, using 5 different camera vantage points.
I have a couple of options
Create 5 textures and render the scene 5 ...
0
votes
1answer
28 views
How do you reliably (u,v) index a texture as a 2d array of vectors?
Using shader model 5/D3D11/HLSL.
I'd like to treat a 2D array of texels as a 2D matrix of Vectors.
u
v (1,4,3,9) (7, 5.5, 4.9, 2.1)
(Each texel is a 4-component vector). I need to access ...
0
votes
1answer
95 views
Texture transform matrix in a constantbuffer not working properly
I'm trying to clip a texture by hardcoding the texture coordinates through 0 and 1, and then sending a constantbuffer containing a 3x3 texture transform matrix to the vertexshader.
However, the ...
0
votes
1answer
179 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
1answer
141 views
How to create a constant buffer with valid dimension
Good evening,
I'm trying to send a XMFLOAT3X3 to a constant buffer (see code below).
ZeroMemory(&constDesc, sizeof(constDesc));
constDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER;
...
0
votes
1answer
90 views
Screen-space square looking distorted in PIX
I have a simple function that creates a square that covers the entire screen, I use it for applying post-processing effects, however as far as I can tell it has been the cause of countless errors.
...
0
votes
1answer
42 views
Direct3D11 get last error
I did something to my d3d11 application and now I'm getting a GPU crash with WDDM TDR reset happening sometime after Present is called.
Since Present (nor any of the draw call!) functions returns an ...