• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.github/23-Nov-2023-42

android/23-Nov-2023-1,761,6751,759,476

data/23-Nov-2023-176,807153,790

doc/23-Nov-2023-8,7756,964

execserver/23-Nov-2023-4,9823,449

executor/23-Nov-2023-9,2266,598

external/23-Nov-2023-2,840,4412,469,787

framework/23-Nov-2023-181,923136,531

modules/23-Nov-2023-478,516366,784

scripts/23-Nov-2023-12,0328,456

targets/23-Nov-2023-800647

.editorconfigD23-Nov-2023188 108

.gitignoreD23-Nov-202382 1110

Android.bpD23-Nov-20237.3 KiB296253

AndroidGen.bpD23-Nov-202383.9 KiB1,2991,296

CMakeLists.txtD23-Nov-202313.3 KiB364290

CODE_OF_CONDUCT.mdD23-Nov-2023280 21

LICENSED23-Nov-202311.1 KiB203169

METADATAD23-Nov-202339 43

MODULE_LICENSE_APACHE2D23-Nov-20230

NOTICED23-Nov-202311.1 KiB203169

OWNERSD23-Nov-2023141 97

README-android.mdD23-Nov-2023901 1914

README.mdD23-Nov-20232.3 KiB5538

deqp_binary.ldsD23-Nov-202327 65

README-android.md

1# dEQP for Android
2
3## Notes on `deqp-binary`
4
5`deqp-binary` (defined in `Android.bp`) allows running dEQP offscreen
6from a single binary via adb shell. Not all tests will work,
7but most should be fine.
8
9Example usage:
10
11```sh
12cd $ANDROID_PRODUCT_OUT/testcases/deqp-binary/arm64
13adb push ./ /data/local/tmp/
14adb shell "cd /data/local/tmp && ./deqp-binary64 --deqp-caselist-file=/data/local/tmp/vk-incremental-deqp.txt --deqp-log-images=disable --deqp-log-filename=/sdcard/vk-incremental-deqp-results.qpa --deqp-surface-type=fbo --deqp-surface-width=2048 --deqp-surface-height=2048"
15adb shell "cd /data/local/tmp && ./deqp-binary64 --deqp-caselist-file=/data/local/tmp/gles3-incremental-deqp.txt --deqp-log-images=disable --deqp-log-filename=/sdcard/gles3-incremental-deqp-results.qpa --deqp-surface-type=fbo --deqp-surface-width=2048 --deqp-surface-height=2048"
16# Check results.
17adb logcat -s dEQP
18```
19

README.md

1dEQP README
2===========
3
4This repository contains a GPU testing suite called dEQP (drawElements Quality Program).
5dEQP contains tests for several graphics APIs, including OpenGL ES, EGL, and Vulkan.
6
7Documentation
8-------------
9
10Up-to-date documentation for the dEQP is available at
11[Android Open Source Project site](http://source.android.com/devices/graphics/testing.html).
12
13The .qpa logs generated by the conformance tests may contain embedded PNG images of the results.
14These can be viewed with `scripts/qpa_image_viewer.html`, by opening the file
15with a web browser and following its instructions, or using the
16[Cherry](https://android.googlesource.com/platform/external/cherry/+/master)
17tool.
18
19Khronos Vulkan Conformance Tests
20--------------------------------
21
22This repository includes Khronos Vulkan CTS under `external/vulkancts` directory.
23For more information see [Vulkan CTS README](external/vulkancts/README.md).
24
25Khronos OpenGL / OpenGL ES Conformance Tests
26--------------------------------
27
28This repository includes Khronos OpenGL / OpenGL ES CTS under `external/openglcts` directory.
29For more information see [OpenGL / OpenGL ES CTS README](external/openglcts/README.md).
30
31ANGLE for Android
32--------------------------------
33
34ANGLE can be built for Android by following the instructions
35[here](https://chromium.googlesource.com/angle/angle.git/+/HEAD/doc/DevSetup.md#building-angle-for-android).
36
37The resulting ANGLE shared object libraries can be linked against and embedded into `dEQP.apk` with
38the `--angle-path` option.   This will cause `dEQP.apk` to use the ANGLE libraries for OpenGL ES
39calls, rather than the native drivers.
40
41An ABI must be specified and the directory structure containing the ANGLE shared objects must match
42it so the build system can find the correct `*.so` files.
43
44Assuming ANGLE shared objects are generated into `~/chromium/src/out/Release/` and `dEQP.apk` will
45be generated with `--abis arm64-v8a`, issue the following commands:
46
47	cd ~/chromium/src/out/Release/
48	mkdir arm64-v8a && cd arm64-v8a
49	cp ../lib*_angle.so .
50
51The `--angle-path ~/chromium/src/out/Release/` option can then be used to link against and embed the
52ANGLE shared object files.   The full command would be:
53
54	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/
55