mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 13:20:54 +00:00
7149302680
* There's not a good accepted terminology for this kind of event, and for historical reasons 'drawcall' has been the accepted term, even though that can be quite confusing when a dispatch or a copy is a 'drawcall'. * This is particularly highlighted by the event browser filters where $draw() includes draws and dispatches, but $dispatch() only includes dispatches, it's hard to intuitively understand why $draw() matches all of these calls. * As a result we've defined the term 'action' to cover these types of events in the same way that we defined 'event' in the first place to mean a single atomic API call.
59 lines
2.4 KiB
Python
59 lines
2.4 KiB
Python
import rdtest
|
|
import struct
|
|
import renderdoc as rd
|
|
|
|
|
|
class D3D11_Stream_Out(rdtest.TestCase):
|
|
demos_test_name = 'D3D11_Stream_Out'
|
|
|
|
def check_capture(self):
|
|
action = self.find_action("Draw")
|
|
|
|
self.check(action is not None)
|
|
|
|
self.controller.SetFrameEvent(action.eventId, False)
|
|
|
|
pipe: rd.PipeState = self.controller.GetPipelineState()
|
|
|
|
# Get the input data as our reference
|
|
|
|
# First action should have data at offset 0. First buffer has positions, second has colors (with doubled stride)
|
|
|
|
vsin = self.get_vsin(action)
|
|
|
|
pos = [(*v['POSITION'], 1.0) for v in vsin]
|
|
col = [v['COLOR'] for v in vsin]
|
|
|
|
d3d11pipe: rd.D3D11State = self.controller.GetD3D11PipelineState()
|
|
|
|
so: rd.D3D11StreamOut = d3d11pipe.streamOut
|
|
so_bytes = self.controller.GetBufferData(so.outputs[0].resourceId, so.outputs[0].byteOffset, 0)
|
|
|
|
for i,p in enumerate(pos):
|
|
so_p = struct.unpack_from("4f", so_bytes, 0 + 4*4*i)
|
|
if not rdtest.value_compare(p, so_p):
|
|
raise rdtest.TestFailureException("Streamed-out position {} doesn't match expected {}".format(so_p, p))
|
|
|
|
so_bytes = self.controller.GetBufferData(so.outputs[1].resourceId, so.outputs[1].byteOffset, 0)
|
|
|
|
for i,c in enumerate(col):
|
|
so_c = struct.unpack_from("4f", so_bytes, 0 + 8*4*i)
|
|
if not rdtest.value_compare(c, so_c):
|
|
raise rdtest.TestFailureException("Streamed-out color {} doesn't match expected {}".format(so_c, c))
|
|
|
|
action_auto = self.find_action("DrawAuto", action.eventId)
|
|
|
|
# First action should be 3 vertices
|
|
if not rdtest.value_compare(action_auto.numIndices, 3):
|
|
raise rdtest.TestFailureException("First DrawAuto() actions {} vertices".format(action_auto.numIndices))
|
|
|
|
action_auto = self.find_action("DrawAuto", action_auto.eventId+1)
|
|
|
|
# Second action should be 6 vertices (3 vertices, instanced twice
|
|
if not rdtest.value_compare(action_auto.numIndices, 6):
|
|
raise rdtest.TestFailureException("Second DrawAuto() actions {} vertices".format(action_auto.numIndices))
|
|
if not rdtest.value_compare(action_auto.numInstances, 1):
|
|
raise rdtest.TestFailureException("Second DrawAuto() actions {} instances".format(action_auto.numInstances))
|
|
|
|
rdtest.log.success("First action stream-out data is correct")
|