From 14c86a9246202c0c928c03cf6886dde134fba525 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Thu, 14 Dec 2017 16:27:41 +0000 Subject: COMPMID-557 Added some GLES documentation and rework following OOB testing Change-Id: I56333ed23d30c5ec3094f64b78a023589064fe06 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/113375 Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com Reviewed-by: Jim He Reviewed-by: Anthony Barbier --- examples/SConscript | 4 ---- 1 file changed, 4 deletions(-) (limited to 'examples/SConscript') diff --git a/examples/SConscript b/examples/SConscript index 2a037859ef..9be9fa9d9a 100644 --- a/examples/SConscript +++ b/examples/SConscript @@ -36,9 +36,6 @@ examples_env = env.Clone() examples_env.Append(CPPPATH = ["#"]) examples_env.Append(LIBPATH = ["#build/%s/opencl-1.2-stubs" % env['build_dir']]) -if env['gles_compute'] and env['os'] != 'android': - examples_env.Append(LIBPATH = ["#build/%s/opengles-3.1/stubs" % env['build_dir']]) - # Build examples utils = examples_env.Object("../utils/Utils.cpp") @@ -104,7 +101,6 @@ if env['gles_compute']: for file in Glob("./gc_*.cpp"): example = os.path.basename(os.path.splitext(str(file))[0]) if env['os'] != 'android': - examples_env.Append(CPPPATH = ["#opengles-3.1/include", "#opengles-3.1/mali_include"]) prog = examples_env.Program(example, ["{}.cpp".format(example), utils], CPPDEFINES=['ARM_COMPUTE_GC'], LIBS = [arm_compute_libs, "EGL", "GLESv2"]) Depends(prog, [arm_compute_dependency, egl, glesv2]) else: -- cgit v1.2.1