Skip to main content

Questions tagged [directx11]

DirectX 11 is the primary graphics API for Microsoft platforms including Windows, Xbox One, and Windows phone.

Filter by
Sorted by
Tagged with
0 votes
1 answer
82 views

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: ...
philB's user avatar
  • 331
0 votes
1 answer
68 views

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'...
philB's user avatar
  • 331
0 votes
1 answer
68 views

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 ...
philB's user avatar
  • 331
0 votes
1 answer
43 views

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) ...
philB's user avatar
  • 331
0 votes
1 answer
86 views

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 ...
philB's user avatar
  • 331
0 votes
1 answer
169 views

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 ...
philB's user avatar
  • 331
0 votes
0 answers
70 views

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. ...
Emre Tekmen's user avatar
1 vote
0 answers
47 views

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 ...
Denzel's user avatar
  • 11
1 vote
1 answer
632 views

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 ...
whitecloth's user avatar
1 vote
1 answer
487 views

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?
M 027's user avatar
  • 125
1 vote
1 answer
75 views

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 ...
philB's user avatar
  • 331
0 votes
1 answer
61 views

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 ...
philB's user avatar
  • 331
0 votes
1 answer
64 views

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 ...
philB's user avatar
  • 331
1 vote
0 answers
41 views

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 ...
ThisAccountIsForGameDev's user avatar
0 votes
2 answers
231 views

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 ...
Roolld's user avatar
  • 1
1 vote
2 answers
440 views

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 ...
philB's user avatar
  • 331
0 votes
2 answers
125 views

I have a problem with converting my pixel shader to compute shader. The error is in this piece of code: ...
philB's user avatar
  • 331
0 votes
1 answer
118 views

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 ...
philB's user avatar
  • 331
1 vote
1 answer
1k views

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 (...
Sergey Sharpov's user avatar
0 votes
1 answer
80 views

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 ...
philB's user avatar
  • 331
0 votes
1 answer
81 views

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 ...
vK 3 1 RON's user avatar
1 vote
1 answer
241 views

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 ...
philB's user avatar
  • 331
3 votes
1 answer
383 views

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 ...
Matthew Elkins's user avatar
0 votes
2 answers
1k views

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 ...
Barış Üçkardeş's user avatar
1 vote
1 answer
1k views

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 ...
Gijahara's user avatar

1
2 3 4 5
16