search for: virtgpu_max_scanout

Displaying 3 results from an estimated 3 matches for "virtgpu_max_scanout".

Did you mean: virtgpu_max_scanouts
2014 Sep 11
0
[PATCH 1/2] virtio-gpu/2d: add hardware spec include file
...struct virtgpu_ctrl_hdr hdr; + uint32_t resource_id; + uint32_t nr_entries; +}; + +/* VIRTGPU_CMD_RESOURCE_INVAL_BACKING */ +struct virtgpu_resource_inval_backing { + struct virtgpu_ctrl_hdr hdr; + uint32_t resource_id; +}; + +/* VIRTGPU_RESP_OK_DISPLAY_INFO */ +#define VIRTGPU_MAX_SCANOUTS 16 +struct virtgpu_resp_display_info { + struct virtgpu_ctrl_hdr hdr; + struct virtgpu_display_one { + uint32_t enabled; + uint32_t width; + uint32_t height; + uint32_t x; + uint32_t y; + uint32...
2014 Sep 11
9
[PATCH 0/2] virtio-gpu: hardware specification
Hi folks, Lets kick off the virtio-gpu review process, starting with the virtio protocol. This is a tiny patch series for qemu. Patch #1 carries the header file describing the virtual hardware: config space, command structs being sent over the rings, defines etc. Patch #2 adds a text file describing virtio-gpu to docs/specs/. It covers 2D support only for now. For anybody who wants to dig a
2014 Sep 11
9
[PATCH 0/2] virtio-gpu: hardware specification
Hi folks, Lets kick off the virtio-gpu review process, starting with the virtio protocol. This is a tiny patch series for qemu. Patch #1 carries the header file describing the virtual hardware: config space, command structs being sent over the rings, defines etc. Patch #2 adds a text file describing virtio-gpu to docs/specs/. It covers 2D support only for now. For anybody who wants to dig a