Ensure is_extension_available is used where possible (#722)

(Patch2)
A number of tests have got their own code for checking the presence of
extensions. This change replaces that code with is_extension_available
function.

Contributes to #627

Signed-off-by: Ellen Norris-Thompson <ellen.norris-thompson@arm.com>

Change-Id: I17e007e5ad009e522c5006c42537bf1170550a6f
This commit is contained in:
ellnor01
2020-04-03 10:49:53 +01:00
committed by GitHub
parent cd3b552094
commit 93e76a8a4a
10 changed files with 76 additions and 262 deletions

View File

@@ -116,7 +116,7 @@ bool DetectPlatformAndDevice()
for (size_t j = 0; j < devicesNum; ++j)
{
if (ExtensionCheck("cl_khr_dx9_media_sharing", devices[j]))
if (is_extension_available(devices[j], "cl_khr_dx9_media_sharing"))
{
gPlatformIDdetected = platforms[i];
gDeviceIDdetected = devices[j];