Commit f1307ebb authored by Gwenole Beauchesne's avatar Gwenole Beauchesne Committed by Xiang, Haihao

Implement vaQueryDisplayAttributes() as a no-op.

parent b9129d15
No related merge requests found
...@@ -1031,8 +1031,10 @@ i965_QueryDisplayAttributes(VADriverContextP ctx, ...@@ -1031,8 +1031,10 @@ i965_QueryDisplayAttributes(VADriverContextP ctx,
VADisplayAttribute *attr_list, /* out */ VADisplayAttribute *attr_list, /* out */
int *num_attributes) /* out */ int *num_attributes) /* out */
{ {
/* TODO */ if (num_attributes)
return VA_STATUS_ERROR_UNKNOWN; *num_attributes = 0;
return VA_STATUS_SUCCESS;
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment