Skip to content

Commit

Permalink
Use 'default' instead of 'null' in some examples
Browse files Browse the repository at this point in the history
Change-Id: Ia819d7696fc23ddf4066eb48b5a5a53fabfb38b2
  • Loading branch information
alegal-arm committed Dec 9, 2016
1 parent fb0e2cc commit 3492973
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions external/openglcts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Following target files are provided with the package:
| Name | Description |
|:---------|-----------------|
|android | Used in Android build. Requires use of suitable toolchain file (see `cmake/` directory) |
|default| Checks for presence of ES2, ES3, and EGL libraries and headers in default search paths and configures build accordingly|
|default| Checks for presence of GL, ES2, ES3, and EGL libraries and headers in default search paths and configures build accordingly|
|null | Nullbuild target |
|nullws | NullWS build target |
|x11_egl| X11 build for platforms with native EGL support|
Expand Down Expand Up @@ -249,14 +249,14 @@ command line examples in the next steps:

Building GL, ES2, or ES3.x conformance tests:

cmake <path to openglcts> -DDEQP_TARGET=null -G"<Generator Name>"
cmake <path to openglcts> -DDEQP_TARGET=default -G"<Generator Name>"
cmake --build .

Khronos Confidential CTS doesn't support run-time selection of API context.
If you intend to run it you need to additionally supply `GLCTS_GTF_TARGET`
option to you cmake command, e.g.:

cmake <path to openglcts> -DDEQP_TARGET=null -DGLCTS_GTF_TARGET=<target> -G"<Generator Name>"
cmake <path to openglcts> -DDEQP_TARGET=default -DGLCTS_GTF_TARGET=<target> -G"<Generator Name>"

Available `<target>`s are `gles2`, `gles3`, `gles31`, `gles32`, and `gl`.
The default `<target>` is `gles32`.
Expand Down

0 comments on commit 3492973

Please sign in to comment.