mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-02 20:05:44 +00:00
19 lines
659 B
Python
19 lines
659 B
Python
import renderdoc as rd
|
|
import rdtest
|
|
|
|
|
|
class D3D12_Write_Subresource(rdtest.TestCase):
|
|
demos_test_name = 'D3D12_Write_Subresource'
|
|
|
|
def check_capture(self):
|
|
draw = self.find_draw("Draw")
|
|
|
|
self.controller.SetFrameEvent(draw.eventId, False)
|
|
|
|
pipe: rd.PipeState = self.controller.GetPipelineState()
|
|
|
|
# Should be black around the sides, white in the centre
|
|
self.check_pixel_value(pipe.GetOutputTargets()[0].resourceId, 0.05, 0.05, [0.0, 0.0, 0.0, 0.0])
|
|
self.check_pixel_value(pipe.GetOutputTargets()[0].resourceId, 0.5, 0.5, [1.0, 1.0, 1.0, 1.0])
|
|
|
|
rdtest.log.success("Picked values are as expected") |