Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
.editorconfig | 22-Oct-2020 | 188 | |
.github/ | 22-Oct-2020 | ||
.travis.yml | 22-Oct-2020 | 752 | |
android/ | 22-Oct-2020 | ||
Android.bp | 22-Oct-2020 | 2.4K | |
AndroidGen.bp | 22-Oct-2020 | 71.1K | |
CMakeLists.txt | 22-Oct-2020 | 13.5K | |
CODE_OF_CONDUCT.md | 22-Oct-2020 | 280 | |
data/ | 22-Oct-2020 | ||
doc/ | 22-Oct-2020 | ||
execserver/ | 22-Oct-2020 | ||
executor/ | 22-Oct-2020 | ||
external/ | 22-Oct-2020 | ||
framework/ | 22-Oct-2020 | ||
LICENSE | 22-Oct-2020 | 11.1K | |
MODULE_LICENSE_APACHE2 | 22-Oct-2020 | 0 | |
modules/ | 22-Oct-2020 | ||
NOTICE | 22-Oct-2020 | 11.1K | |
OWNERS | 22-Oct-2020 | 120 | |
README.md | 22-Oct-2020 | 2.2K | |
scripts/ | 22-Oct-2020 | ||
targets/ | 22-Oct-2020 |
1 dEQP README 2 =========== 3 4 This repository contains a GPU testing suite called dEQP (drawElements Quality Program). 5 dEQP contains tests for several graphics APIs, including OpenGL ES, EGL, and Vulkan. 6 7 Documentation 8 ------------- 9 10 Up-to-date documentation for the dEQP is available at 11 [Android Open Source Project site](http://source.android.com/devices/graphics/testing.html). 12 13 The .qpa logs generated by the conformance tests may contain embedded png images of the results. 14 These can be viewed with the [Cherry](https://android.googlesource.com/platform/external/cherry/+/master) 15 tool. 16 17 Khronos Vulkan Conformance Tests 18 -------------------------------- 19 20 This repository includes Khronos Vulkan CTS under `external/vulkancts` directory. 21 For more information see [Vulkan CTS README](external/vulkancts/README.md). 22 23 Khronos OpenGL / OpenGL ES Conformance Tests 24 -------------------------------- 25 26 This repository includes Khronos OpenGL / OpenGL ES CTS under `external/openglcts` directory. 27 For more information see [OpenGL / OpenGL ES CTS README](external/openglcts/README.md). 28 29 ANGLE for Android 30 -------------------------------- 31 32 ANGLE can be built for Android by following the instructions 33 [here](https://chromium.googlesource.com/angle/angle.git/+/HEAD/doc/DevSetup.md#building-angle-for-android). 34 35 The resulting ANGLE shared object libraries can be linked against and embedded into `dEQP.apk` with 36 the `--angle-path` option. This will cause `dEQP.apk` to use the ANGLE libraries for OpenGL ES 37 calls, rather than the native drivers. 38 39 An ABI must be specified and the directory structure containing the ANGLE shared objects must match 40 it so the build system can find the correct `*.so` files. 41 42 Assuming ANGLE shared objects are generated into `~/chromium/src/out/Release/` and `dEQP.apk` will 43 be generated with `--abis arm64-v8a`, issue the following commands: 44 45 cd ~/chromium/src/out/Release/ 46 mkdir arm64-v8a && cd arm64-v8a 47 cp ../lib*_angle.so . 48 49 The `--angle-path ~/chromium/src/out/Release/` option can then be used to link against and embed the 50 ANGLE shared object files. The full command would be: 51 52 python scripts/android/build_apk.py --sdk <path to Android SDK> --ndk <path to Android NDK> --abis arm64-v8a --angle-path ~/chromium/src/out/Release/