Questions tagged [directx11]
DirectX 11 is the primary graphics API for Microsoft platforms including Windows, Xbox One, and Windows phone.
777 questions
0
votes
2
answers
139
views
Does it make sense to use a compute shader with Dispatch(1,1,1) and Numthreads[1,1,1] to draw a cone?
I was working on this idea of drawing a cone rotating on the y axis with a parametric equation, using a compute shader with a function like:
...
1
vote
1
answer
56
views
D3D11 type conversion rules
My understanding is that, in general, we can supply data to the GPU in some format (in D3D, as defined by DXGI_FORMAT_xxx) and it will be implicitly converted to ...
0
votes
1
answer
73
views
Difficulties for GPU rendering of a cone using parametric equation
I'm trying to render a cone at the gpu for some effects. I'm using the parametric equation provided here. I ended up with the shader below intended to work with an unorderedaccessview target (DX11). I'...
1
vote
1
answer
63
views
D3D11 batching with texture arrays
When employing texture arrays how does typically communicate the associated indices when rendering to batch as much work as possible per draw? The only approaches I can think of are:
Supply texture ...
0
votes
1
answer
70
views
How to create array of Depthstencil2D from texture2Darray
I have already done someting like this for texturecube but here I don't understand what I'm doing wrong. I have the first chance exception error message.
Below how I proceed:
create a texture for ...
0
votes
0
answers
24
views
Defining camera settings to optimize the use of a shadowmap texture
In my engine I have the possibility to switch from isometric or first person camera, with a far/close camera point of view. In isometric mode the camera point of view can also be in either the -X or +...
0
votes
1
answer
46
views
Difficulties with matrices settings for cascaded shadows
I have added cascaded shadows to my pipeline. The whole process seems to works fine as shown in the picture. But I should obtain a progressive “zoom” from the first cascade (red) to the last (blue) ...
0
votes
0
answers
39
views
Why is samplecmp limited to red channel
SampleCmp can be used with texture having only a red channel (typically depth texture) or on texture having R+other channels but reading only the red channel.
I'm storing two depths in RG channels and ...
0
votes
1
answer
88
views
Advice on how to best use if possible 4 GatherCmpRed to emulate a 4x4 PCF sampling for shadowmap blur
In a part of my level I have shadows close to the camera where a good blur is important. Currently I have implemented a 4x4 PCF, thus requiring 16 texture samplings.
I'm trying to see if the ...
0
votes
1
answer
74
views
Shadow artifact with cubemap shadow for pointlights
I am facing some difficulties with the use of a cubemap shadow associated to a poinlight (represented as the yellow bicone in the picture). The shadow map itself is generated properly (see picture).
...
0
votes
1
answer
175
views
Is memcpy safe to use to fill an ID3DBlob with a pre-compiled shader?
Following my post Saving shaders to file I then tried to load shader object files to recreate my shaders.
I found some Q&A about how to load precompiled HLSL shaders into memory, including a short ...
1
vote
1
answer
148
views
Saving shaders to file
I'm in the process of writing saving/loading function for my little game. I'm willing to save the shaders as resource as I did for texture and meshes.
I have a _SHADER struct that contains the VS/PS ...
0
votes
0
answers
70
views
Back buffer texture appears distorted before presenting
I am trying to send video data from Dolphin Emulator to another process. To do so, I first get a reference to the back buffer from the swap chain.
...
0
votes
0
answers
60
views
How to build directional light view / proj matrices in DirectX11?
I think I built my matrices wrong:
...
1
vote
0
answers
48
views
CGLM Not Rendering with Sokol [closed]
I've setup cglm from a wrap configured with Meson, and have copied one of the samples from https://github.com/floooh/sokol-samples/tree/master (cube-sapp, to be exact). I've tried to replace sokol's ...
0
votes
1
answer
120
views
Issues rendering a cube in Direct3D11
I started studying DirectX recently and I'm developing an "game engine". For now I just want to draw a cube, but for some reason that I don't know why, it doesn't draw it at all. It's ...
1
vote
1
answer
640
views
IDXGIFactory::CreateSwapChain() vs D3D11CreateDeviceAndSwapChain - When to use which for making a swap chain?
I'm following a bunch of tutorial series on how to set up Direct3D 11 for 3D rendering, I'm focusing on the swap chain part for now. The main tutorial series I am following is the one by PardCode on ...
1
vote
0
answers
45
views
1
vote
1
answer
497
views
Use DirectX 11 & HLSL in SDL
I saw Lazy Foo using OpenGL & GLSL in SDL, but I want to use DirectX 11 & HLSL in SDL.
Is there a way to do this, and how?
0
votes
1
answer
288
views
how to pass result of Compute Shader using UAV to Target View and render it in Direct3D11?
I'm trying to get a very basic Compute Shader to write to a Texture2D and render its result to screen. so far I have written this code to bind UAV to Texture2D and pass that to my Compute Shader. but ...
1
vote
1
answer
77
views
Failure on DX11Texturesavetofile for B5G6R5_UNORM format
I have a protocol to prepare with a combining shader a texture from two other textures and saving it in RGBA8_UNORM DDS format using DX11SaveTextureToFile. Works fine. It appears to me that I don't ...
0
votes
3
answers
145
views
How to clear a specific color channel in a rendertargetview
I have this situation where I would like to use a R16G16 (or 32) float RTV, write on the R channel at start and update only the G channel each frame. Is it possible to clear the RTV in a way the R ...
0
votes
1
answer
68
views
How to calculate elongated reflection along the perpendicalar axis of a plane
I'm adding a rain effect in my pipeline in forward mode. I'm rendering a reflection map used to mirror the scene on a "wet" ground.
I have raindrops rendered as circles with an animated ...
0
votes
1
answer
212
views
GLSL ported shader not working in HLSL
I have been working on an Infinity Grid shader for my engine.
It was already implemented to Vulkan’s GLSL, so it worked great with OpenGL’s (4.6) GLSL.
Here's a reference.
This basic shader with ...
0
votes
1
answer
68
views
About possibly using Depthstencil 2D array in multiplerendertarget mode
I'm rendering in forward mode my scene with its depth buffer and because I'm using animated characters I'm plannig to find a way to use multiple rendertargets to do the directional shadow pass at the ...
0
votes
1
answer
174
views
What is the best way to handle more bone weights than allowed in code?
I am currently attempting to incorporate animated models in my game engine, using Assimp to load the models. I can load and render the static model just fine, but when I try to enable the animation, ...
1
vote
0
answers
41
views
Some of the assignment operations in the directx11 compute shader are getting skipped, even though the assigned values are used later
I'm implementing an algorithm called Fast3x3 SVD on my compute shader. However, while I was debugging my compute shader in RenderDoc, I noticed some assignment operators were completely getting ...
1
vote
1
answer
471
views
Blitting GStreamer's decoded buffer into a Unity render texture
I'm working on a Unity native plugin that runs a gstreamer pipeline in the background, decodes it using hardware decoding, then copies the texture over to a render ...
0
votes
2
answers
233
views
Skybox looks distorted when camera nears sides of the cube
I created a cubemap for skybox, but there were problems with displaying UV for it. when I appear in the world, everything looks fine as it should, BUT when I approach one of the sides of the cube, its ...
0
votes
1
answer
603
views
How to use gather offsets
I have this situation where I have parts of the same scene in each 4 half squares of a rendertarget rendered with the same view projection matrices. In my deferred pipeline I would like to sample with ...
1
vote
2
answers
445
views
How to use unconventional texture format
I would like to use a texture that could have more than 4 channels.
I have seen a post where they use a single channel R8 texture to store string chars.
I'm thinking of using something like that with ...
0
votes
1
answer
153
views
Screen position in Deferred Shading
I am trying to implement a program in Direct3D 11 which uses techniques like deferred shading and shadowmapping, but when I create my gBuffers, the position looks strange. After researching a bit I ...
0
votes
2
answers
128
views
error X3671: loop termination conditions in varying flow control cannot depend on data read from a UAV
I have a problem with converting my pixel shader to compute shader.
The error is in this piece of code:
...
0
votes
0
answers
59
views
using texture as variable
I was trying to use a texture as a variable in my shader (DX11 VS/PS 5.0). Can't get it.
I have recently find this piece of code here where a texture is passed as a function parameter.
Is that ...
0
votes
1
answer
123
views
Vertex sorting to match triangle list definition of an hexagon
I’m working on a project to display molecules with DirectX that I’m updating regularly to add visual effects. The one I’m working on is simple: display a flat transparent hexagon that match a ...
0
votes
1
answer
142
views
Rotation is happening in reverse when the cube is upside down
I am writing this functionality in DirectX to rotate cube using the mouse. Now the functionality is working perfectly fine when the cube is sitting straight, but mouse functionality is reversed when ...
1
vote
1
answer
1k
views
Difference between Command Lists and Deferred context
I'm new to DirectX and I feel like I killed Google search but still cannot find information about the difference between these:
Immediate context + Command Lists
Immediate context + Deferred context (...
1
vote
1
answer
186
views
What am I doing wrong with this BC7 reading?
I need to import a BCn image without any existing libraries. Thus, I have to write my own reader. This has gone fairly well so far for BCs 1-5 (don't need BC6), but now BC7 is causing a problem.
As ...
0
votes
1
answer
82
views
Little problem with offsetting transformed vertex in a vertex shader
I’m working on some home-made menu stuff under DX11. I’m creating the rect menus at start all located at position 0,0. Each menu contains some lines of options. Everything is created as transformed ...
0
votes
1
answer
220
views
Looking for an advice on how to possibly boost my compute shader
I have 4 rendertargets R10G10B10A2 each being used to store color and normal in a compact double RGB 555 bits format. When I'm doing the lighting pass I'm obliged to have extra rendertargets because ...
0
votes
1
answer
82
views
Object stuck to screen no matter what eye position is used
I've run into an issue when trying to write a simple rendering program in D3D11. I'm 90% sure it's to do with some faulty matrix multiplication or generation, but I've tried debugging the values of ...
0
votes
0
answers
614
views
Message pump and D3D11 DXGI in separate threads
I have read:
https://learn.microsoft.com/en-us/windows/win32/direct3darticles/dxgi-best-practices#multithreading-and-dxgi
https://learn.microsoft.com/en-us/windows/win32/direct3ddxgi/d3d10-graphics-...
1
vote
1
answer
248
views
Last hole artifact in screen space refection with Hierarchical Z
After lot of efforts I have an almost nice shader doing SSR with HiZ. The shader is provided below. Some parameters are tunable and you can speed up things but the difficulty in my scene (picture) are ...
0
votes
2
answers
1k
views
3
votes
1
answer
384
views
How Can I Match the Windows Cursor Latency with a DirectX Rendered Cursor?
My Win32/DirectX 11.1 project requires that I render the mouse cursor myself rather than use the system cursor. This is easy enough; however, I've found that there is a human-perceptible latency when ...
0
votes
1
answer
155
views
Trying to debug slow DrawIndexed calls. 0.1+ms CPU usage per call
I have just been reworking my rendering pipeline. There is an issue I had noticed cropping up during this work but now its become constant and I cant figure out the cause.
Every call to ...
0
votes
2
answers
1k
views
Handling pipeline objects in both DX12 and Vulkan like graphics APIs
I have been using OpenGL and Directx11 extensively for my engine. The thing is, when I wanted to support DX12 or Vulkan, I realized that they collect all the state data in one place, removing the ...
0
votes
1
answer
496
views
How to generate mipmaps with min value sampling for Hierarchical Z test (HiZ)?
I'm on the way to add HiZ to my SSR protocol as explained here
I would like to use generatemip, but can't find how to select sampled pixels based on a min value ...
1
vote
1
answer
1k
views
Would you ever need multiple D3D11 devices?
I'm programming a rendering engine, and I'm considering whether on not I would need to implement the availability to call D3D11CreateDevice() multiple times to get ...
0
votes
1
answer
569
views
What would be a correct ID3D11Query design for occlusion testing?
I've tried looking for tutorials or samples related to the topic - but all that I could find are either scientific papers or vague posts on forums.
As I understand it - I need to dedicate a whole pass ...