Hi, when I interop Optix with D3D11, I come cross a error: D3D11 buffer map failed.-2147024809, [12255404])" …
my work is as follows:
(1) I define a ID3D11buffer * g_pGlobalVBuffer and create it.
In the programming guide of OptiX 3.5, there is still the note, that D3D11_CPU_ACCESS_READ is needed. However, in 2012 I was able to map it without. But any way, I would try to do it the official way first.
I’m also not sure, if you can write into the vertex buffer. Maybe it could work for you to first write into a staging buffer and then copy it with d3d into the correct position.
here is the old thread with more info how i did it:
Setting Acceleration property “vertex_buffer_name” is just an optimization for triangles. The Sbvh build could optimize something quicker then, but it’s actually not required. The OptiX Programming Guide table 3.5.3. Properties says this: “vertex_buffer_name” | Sbvh TriangleKdTree | The name of the buffer variable holding triangle vertex data. Each vertex consists of 3 floats. Mandatory for TriangleKdTree, optional for Sbvh (but recommended if the geometry consists of triangles). The default is “vertex_buffer”.
Otherwise it’ll use the standard bounding box program you provided, like the other BVH based acceleration structure builders. If the more optimized Sbvh build routine is trying to read the buffer by mapping it on the host and you didn’t grant CPU read access on the D3D side, that could be the culprit.
Or just try without assigning that Acceleration property.
(I always start with the Bvh builder when developing something and when time has come for optimizations I try other builders.)