summaryrefslogtreecommitdiffstats
path: root/waftools
diff options
context:
space:
mode:
Diffstat (limited to 'waftools')
-rw-r--r--waftools/checks/custom.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/waftools/checks/custom.py b/waftools/checks/custom.py
index 8ed06e5b24..36b6822bee 100644
--- a/waftools/checks/custom.py
+++ b/waftools/checks/custom.py
@@ -146,10 +146,6 @@ def check_rpi(ctx, dependency_identifier):
check_pkg_config('egl'),
check_pkg_config('glesv2'),
check_cc(lib=['mmal_core', 'mmal_util', 'mmal_vc_client'], use=['bcm_host']),
- # We still need all OpenGL symbols, because the vo_opengl code is
- # generic and supports anything from GLES2/OpenGL 2.1 to OpenGL 4 core.
- check_statement('GL/gl.h', '(void)GL_RGB32F'), # arbitrary OpenGL 3.0 symbol
- check_statement('GL/gl.h', '(void)GL_LUMINANCE16') # arbitrary OpenGL legacy-only symbol
]
ret = all((fn(ctx, dependency_identifier) for fn in checks))