dri: set the __DRI_API_OPENGL bit based on max gl compat version

This matches similar behaviour for the __DRI_API_OPENGL_CORE bit.

Signed-off-by: Frank Binns <frank.binns@imgtec.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Frank Binns 2015-07-31 09:11:47 +01:00 committed by Eric Anholt
parent b2c5986ea1
commit 7d88413ade
1 changed files with 3 additions and 1 deletions

View File

@ -163,7 +163,9 @@ driCreateNewScreen2(int scrn, int fd,
}
}
psp->api_mask = (1 << __DRI_API_OPENGL);
psp->api_mask = 0;
if (psp->max_gl_compat_version > 0)
psp->api_mask |= (1 << __DRI_API_OPENGL);
if (psp->max_gl_core_version > 0)
psp->api_mask |= (1 << __DRI_API_OPENGL_CORE);
if (psp->max_gl_es1_version > 0)