microsoft / graphics-driver-samples

This repository contains graphics driver samples used to demonstrate how to write graphics driver for the windows platform.
Other
381 stars 134 forks source link

Implement basic validation of command submission to hardware on raspberry pi #9

Closed bhouse-microsoft closed 8 years ago

bhouse-microsoft commented 8 years ago

This test should submit a GPU operation upon receiving a DMA command buffer submission. The driver should be notified by hardware when the GPU operation is completed. Upon notification of GPU command completion, the driver should notify DXGKrnl of the DMA command buffer completion as appropriate.

Ideally, the GPU operation should be some very trivial operation (such as a NOP command submission).

This should be the first step towards handling an actual GPU submission.

bhouse-microsoft commented 8 years ago

I believe this work is complete. Assigning to Indy to comment and close.

indygit commented 8 years ago

Correct. We can run Cubetest and DolphineTests, so command submission is definitely working.