Advertisement

Latest DXR Activity

How to Resolve This Normal Issue?
    uint Stride = DTID.x * 6;
    uint seed = 100000;
    uint3 txDim = uint3(1024, 150, 1024);
 
    RE_VERTEX inVertex1 = inVertices[Stride + 0];
    RE_VERTEX inVertex2 = inVertices[Stride + 1];
    RE_VERTEX inVertex3 = inVertices[Stride + 2];
    RE_VERTEX inVertex4 = inVertices[Stride + 3];
 …
2,304 views
Advertisement

You can write your ray tracer with shaders in dx11 or opengl, or it can be implemented it in opencl. 
But it will not use nvidias dedicated shader cores. But probably they will get thrown out eventually from the chip anyway due to the lack of interest.
It makes no sense to change an api for such…

9,706 views

Oh wow, that's wild! I'm glad you at least figured that out though.

8,425 views

I've wrote a ray tracing shadow shader before. (abbreviated as ShaderA)

And recently I wrote another ray tracing shader. (abbreviated as ShaderB)

I create ID3D12StateObject for both.

But hit group shader identifier is unique between each ID3D12StateObject.

My hit group data struct is like this:

| shader…

5,189 views
Advertisement
Advertisement
Advertisement