1# Basic test set 2[[deqp]] 3deqp = "/deqp/modules/gles2/deqp-gles2" 4caselists = ["/deqp/mustpass/gles2-main.txt"] 5skips = ["/install/iris-skips.txt"] 6deqp_args = [ 7 "--deqp-surface-width=256", "--deqp-surface-height=256", 8 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 9 "--deqp-gl-config-name=rgba8888d24s8ms0", 10] 11version_check = "GL ES 3.2.*git" 12renderer_check = "WHL" 13 14[[deqp]] 15deqp = "/deqp/modules/gles3/deqp-gles3" 16caselists = ["/deqp/mustpass/gles3-main.txt"] 17skips = ["/install/iris-skips.txt"] 18deqp_args = [ 19 "--deqp-surface-width=256", "--deqp-surface-height=256", 20 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 21 "--deqp-gl-config-name=rgba8888d24s8ms0", 22] 23 24[[deqp]] 25deqp = "/deqp/modules/gles31/deqp-gles31" 26caselists = ["/deqp/mustpass/gles31-main.txt"] 27skips = ["/install/iris-skips.txt"] 28deqp_args = [ 29 "--deqp-surface-width=256", "--deqp-surface-height=256", 30 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 31 "--deqp-gl-config-name=rgba8888d24s8ms0", 32] 33 34[[deqp]] 35deqp = "/deqp/external/openglcts/modules/glcts" 36caselists = [ 37 "/deqp/mustpass/gles2-khr-main.txt", 38 "/deqp/mustpass/gles3-khr-main.txt", 39 "/deqp/mustpass/gles31-khr-main.txt", 40] 41skips = ["/install/iris-skips.txt"] 42deqp_args = [ 43 "--deqp-surface-width=256", "--deqp-surface-height=256", 44 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 45 "--deqp-gl-config-name=rgba8888d24s8ms0", 46] 47 48# Note that KHR-GL3* test sets include all tests from the previous 49# version, so we only need to run one test list (unlike dEQP-GLES, 50# where the test sets are separate). 51[[deqp]] 52deqp = "/deqp/external/openglcts/modules/glcts" 53caselists = [ 54 "/deqp/mustpass/gl46-main.txt", 55 "/deqp/mustpass/gl46-khr-single.txt", 56] 57skips = ["/install/iris-skips.txt"] 58deqp_args = [ 59 "--deqp-surface-width=256", "--deqp-surface-height=256", 60 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 61 "--deqp-gl-config-name=rgba8888d24s8ms0", 62] 63 64# 565-nozs 65[[deqp]] 66deqp = "/deqp/modules/gles3/deqp-gles3" 67caselists = ["/deqp/mustpass/gles3-565-no-depth-no-stencil.txt"] 68skips = ["/install/iris-skips.txt"] 69deqp_args = [ 70 "--deqp-surface-width=256", "--deqp-surface-height=256", 71 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 72 "--deqp-gl-config-name=rgb565d0s0ms0", 73] 74prefix = "565-nozs-" 75 76[[deqp]] 77deqp = "/deqp/modules/gles31/deqp-gles31" 78caselists = ["/deqp/mustpass/gles31-565-no-depth-no-stencil.txt"] 79skips = ["/install/iris-skips.txt"] 80deqp_args = [ 81 "--deqp-surface-width=256", "--deqp-surface-height=256", 82 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 83 "--deqp-gl-config-name=rgb565d0s0ms0", 84] 85prefix = "565-nozs-" 86 87# multisample 88[[deqp]] 89deqp = "/deqp/modules/gles3/deqp-gles3" 90caselists = ["/deqp/mustpass/gles3-multisample.txt"] 91skips = ["/install/iris-skips.txt"] 92deqp_args = [ 93 "--deqp-surface-width=256", "--deqp-surface-height=256", 94 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 95 "--deqp-gl-config-name=rgba8888d24s8ms4", 96] 97prefix = "multisample-" 98 99[[deqp]] 100deqp = "/deqp/modules/gles31/deqp-gles31" 101caselists = ["/deqp/mustpass/gles31-multisample.txt"] 102skips = ["/install/iris-skips.txt"] 103deqp_args = [ 104 "--deqp-surface-width=256", "--deqp-surface-height=256", 105 "--deqp-surface-type=pbuffer", "--deqp-visibility=hidden", 106 "--deqp-gl-config-name=rgba8888d24s8ms4", 107] 108prefix = "multisample-" 109