i965: Accept CONTEXT_ATTRIB_PRIORITY for brwCreateContext
The forward port of commit6d87500fe1("dri: Change __DriverApiRec::CreateContext to take a struct for attribs") failed to adapt the set of allowed attributes for the earlier introduction of context priorities (commit1617fca6d1"i965: Pass the EGL/DRI context priority through to the kernel"). Fixes:6d87500fe1("dri: Change __DriverApiRec::CreateContext to take a struct for attribs") Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Adam Jackson <ajax@redhat.com> Cc: Nicolai Hähnle <nicolai.haehnle@amd.com> Cc: Emil Velikov <emil.velikov@collabora.com> Cc: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Tapani Pälli <tapani.palli@intel.com> Cc: mesa-stable@lists.freedesktop.org
This commit is contained in:
@@ -860,7 +860,9 @@ brwCreateContext(gl_api api,
|
||||
return false;
|
||||
}
|
||||
|
||||
if (ctx_config->attribute_mask & ~__DRIVER_CONTEXT_ATTRIB_RESET_STRATEGY) {
|
||||
if (ctx_config->attribute_mask &
|
||||
~(__DRIVER_CONTEXT_ATTRIB_RESET_STRATEGY |
|
||||
__DRIVER_CONTEXT_ATTRIB_PRIORITY)) {
|
||||
*dri_ctx_error = __DRI_CTX_ERROR_UNKNOWN_ATTRIBUTE;
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user