pvr: Add basic skeleton for event sub cmd.
Signed-off-by: Karmjit Mahil <Karmjit.Mahil@imgtec.com> Reviewed-by: Sarah Walker <Sarah.Walker@imgtec.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18612>
This commit is contained in:
@@ -509,9 +509,14 @@ pvr_process_cmd_buffer(struct pvr_device *device,
|
||||
completions);
|
||||
break;
|
||||
|
||||
case PVR_SUB_CMD_TYPE_EVENT:
|
||||
pvr_finishme("Add support to process event sub cmds.");
|
||||
result = vk_error(device, VK_ERROR_OUT_OF_HOST_MEMORY);
|
||||
break;
|
||||
|
||||
default:
|
||||
pvr_finishme("Unsupported sub-command type %d", sub_cmd->type);
|
||||
return vk_error(device, VK_ERROR_OUT_OF_HOST_MEMORY);
|
||||
mesa_loge("Unsupported sub-command type %d", sub_cmd->type);
|
||||
result = vk_error(device, VK_ERROR_OUT_OF_HOST_MEMORY);
|
||||
}
|
||||
|
||||
if (result != VK_SUCCESS) {
|
||||
|
Reference in New Issue
Block a user