summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2017-07-07 14:29:09 -0600
committerBrian Paul <brianp@vmware.com>2017-07-11 21:21:39 -0600
commite9ae0fb488cef88649359a5087344a76fbba751a (patch)
tree408a5568c660c4760f76a29223b1930f0184d185 /framework
parentb50af79d527c4c946c16eae28e49c30a0ae050fa (diff)
wgl: initial check-in of wgl utility code and wgl sanity check program
Like the glx tests/utility code, but for wgl. Note, one must set the PIGLIT_PLATFORM env var to "wgl" before running Piglit. It looks like there's some Waffle work to look at before this can be made automatic.
Diffstat (limited to 'framework')
-rw-r--r--framework/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/core.py b/framework/core.py
index c2de5d065..9abc1284c 100644
--- a/framework/core.py
+++ b/framework/core.py
@@ -44,7 +44,7 @@ __all__ = [
'parse_listfile',
]
-PLATFORMS = ["glx", "x11_egl", "wayland", "gbm", "mixed_glx_egl"]
+PLATFORMS = ["glx", "x11_egl", "wayland", "gbm", "mixed_glx_egl", "wgl"]
class PiglitConfig(configparser.SafeConfigParser):