CreateCommandQueueRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
type string Command queue type
priority string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-createcommandqueuerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateCommandQueueRequest",
  "title": "CreateCommandQueueRequest",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "Direct",
        "Compute",
        "Copy"
      ],
      "description": "Command queue type"
    },
    "priority": {
      "type": "string",
      "enum": [
        "Normal",
        "High",
        "GlobalRealtime"
      ],
      "default": "Normal"
    }
  },
  "required": [
    "type"
  ]
}