freedreno/a6xx: Fix r16_snorm blits

The .NORM bit doesn't seem to do what we think or want.. tu also doesn't
set it, and things seem to work out better when we don't.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11343>
This commit is contained in:
Rob Clark
2021-06-12 10:00:15 -07:00
committed by Marge Bot
parent ed1e729aa0
commit 2964f32cc9
3 changed files with 21 additions and 608 deletions
+13 -13
View File
@@ -11,7 +11,7 @@ traces:
# - device: freedreno-a530
# checksum: b007061e6e93020ddf2aff6a0f32ed72
- device: freedreno-a630
checksum: ea2b03e0768e8400c0badd46e4d26087
checksum: fc26f34216d456ed841114d31215cb51
- path: behdad-glyphy/glyphy.trace
expectations:
- device: freedreno-a306
@@ -229,7 +229,7 @@ traces:
- device: freedreno-a530
checksum: bc19f0f58935fdb348f401396e6845e1
- device: freedreno-a630
checksum: 19a71509dca56e09f3883634c755f4ae
checksum: f546f840e916ab0f11f8df0e4eee584d
- path: glmark2/shading:shading=blinn-phong-inf.trace
expectations:
- device: freedreno-a306
@@ -317,16 +317,16 @@ traces:
- device: freedreno-a530
checksum: a8580a2a85f37600c15fb897cd874432
- device: freedreno-a630
checksum: 751e0e784ba2f003cfc456fe8699f1fa
checksum: 66d7cfb1aedfe40048fe2cdf8032071c
# Note: Requires GL3.3
- path: gputest/gimark.trace
expectations:
- device: freedreno-a630
checksum: 2cf40180a1315795389d0dfc18aad988
checksum: 286cab0d6d6562d5dcc969d778cfa666
- path: gputest/pixmark-julia-fp32.trace
expectations:
- device: freedreno-a630
checksum: 4a02628395948c34d95d035a9c9735cb
checksum: db8e339d8d04aad46189de4d28cc125d
# Note: Requires GL4 (fp64).
# - path: gputest/pixmark-julia-fp64.trace
# expectations:
@@ -348,7 +348,7 @@ traces:
checksum: ef9cec3c226477e908d4bb2ffe9e8eb9
# Looks fine, but totally different shape from the rendering on i965.
- device: freedreno-a630
checksum: 2d1cf314b5ef2e0a79f5f98eee8de446
checksum: e4da2cf366cb68833569105d37aaa50d
- path: gputest/plot3d.trace
expectations:
- device: freedreno-a306
@@ -356,12 +356,12 @@ traces:
- device: freedreno-a530
checksum: 6a05db4e26406b5550157a835a3019d0
- device: freedreno-a630
checksum: 42aba3ab943dae2fe952cae1ff91c354
checksum: 6f7c5493ca1cd71fa6a627bdea1e1665
# Note: Requires GL4 for tess.
- path: gputest/tessmark.trace
expectations:
- device: freedreno-a630
checksum: 5d04b8d71517238b9bc8a527574e884b
checksum: 93d7cb8c775a7b60c499695045edc07f
- path: gputest/triangle.trace
expectations:
- device: freedreno-a306
@@ -369,7 +369,7 @@ traces:
- device: freedreno-a530
checksum: a7142cfb819f5f45863ccca75a5e26a5
- device: freedreno-a630
checksum: 1dc6abfb1cfbc5b16adc6f4abf76eec8
checksum: 2cbd1de2e9ed281b3cd19c957858c81a
- path: humus/AmbientAperture.trace
expectations:
- device: freedreno-a306
@@ -439,7 +439,7 @@ traces:
- device: freedreno-a530
checksum: 0054f0ba67ace5d2defe17b74b5364e9
- device: freedreno-a630
checksum: b47f8151d4310d87070deea9059d001b
checksum: eea608db257a1caa21517f0b13807952
- path: neverball/neverball.trace
expectations:
# Skipped since it's long on a530.
@@ -449,7 +449,7 @@ traces:
# - device: freedreno-a530
# checksum: 2a53e6086588f4675ae3dcda9f26603b
- device: freedreno-a630
checksum: 57fd57aef14d37043a7b56a16dbf50b6
checksum: 5a97da6dbb6c10d615f92030c03d116c
- path: pathfinder/canvas_moire.trace
expectations:
# a306/a630 would need higher GL version to run
@@ -481,7 +481,7 @@ traces:
# - device: freedreno-a530
# checksum: 1ae49af7017ae2a08fbb1caf377ada91
- device: freedreno-a630
checksum: 5f3fff8969813a5fc5d8d95b4d4c5755
checksum: fede0e29fa22a625be6adbd86e70c8c6
# 21 seconds to render. Renders nearly completely black, logs "warning:
# 0:29(61): warning: `var_Position' used uninitialized". Replays fine
# on radeonsi. Skip for now.
@@ -510,7 +510,7 @@ traces:
# - device: freedreno-a530
# checksum: 14e78caf29b6a3341081c8f2e678355f
- device: freedreno-a630
checksum: 2a755a4da96e2b0ec780f877157b6752
checksum: c8608d54cc6298476a2b60686d152dbc
- path: valve/counterstrike-source-v2.trace
expectations:
# Skipped since it's slow even on a530.
@@ -286,14 +286,6 @@ emit_blit_setup(struct fd_ringbuffer *ring, enum pipe_format pfmt,
A6XX_SP_2D_DST_FORMAT_COLOR_FORMAT(fmt) |
COND(util_format_is_pure_sint(pfmt), A6XX_SP_2D_DST_FORMAT_SINT) |
COND(util_format_is_pure_uint(pfmt), A6XX_SP_2D_DST_FORMAT_UINT) |
COND(util_format_is_snorm(pfmt),
A6XX_SP_2D_DST_FORMAT_SINT | A6XX_SP_2D_DST_FORMAT_NORM) |
COND(
util_format_is_unorm(pfmt),
// TODO sometimes blob uses UINT+NORM but dEQP seems unhappy about
// that
//A6XX_SP_2D_DST_FORMAT_UINT |
A6XX_SP_2D_DST_FORMAT_NORM) |
COND(is_srgb, A6XX_SP_2D_DST_FORMAT_SRGB) |
A6XX_SP_2D_DST_FORMAT_MASK(0xf));
@@ -55,7 +55,6 @@ spec@arb_depth_texture@texwrap formats bordercolor-swizzled@GL_DEPTH_COMPONENT16
spec@arb_depth_texture@texwrap formats bordercolor-swizzled@GL_DEPTH_COMPONENT24- swizzled- border color only,Fail
spec@arb_depth_texture@texwrap formats bordercolor-swizzled@GL_DEPTH_COMPONENT32- swizzled- border color only,Fail
spec@arb_direct_state_access@gettextureimage-formats,Crash
spec@arb_direct_state_access@gettextureimage-formats init-by-rendering,Fail
spec@arb_direct_state_access@transformfeedback-bufferbase,Fail
spec@arb_direct_state_access@transformfeedback-bufferbase@general test,Fail
spec@arb_direct_state_access@transformfeedback-bufferrange,Fail
@@ -442,78 +441,6 @@ spec@arb_texture_view@rendering-formats@render to GL_RGBA8UI as GL_RG16_SNORM,Fa
spec@arb_texture_view@rendering-formats@render to GL_RGBA8UI as GL_RG16UI,Fail
spec@arb_texture_view@rendering-formats@render to GL_RGBA8UI as GL_RGB10_A2,Fail
spec@arb_texture_view@rendering-formats@render to GL_RGBA8UI as GL_RGB10_A2UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16 as GL_R16,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16 as GL_R16F,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16 as GL_R16I,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16 as GL_R16_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16 as GL_R16UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16 as GL_RG8,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16 as GL_RG8I,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16 as GL_RG8_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16 as GL_RG8UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16_SNORM as GL_R16,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16_SNORM as GL_R16F,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16_SNORM as GL_R16I,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16_SNORM as GL_R16_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16_SNORM as GL_R16UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16_SNORM as GL_RG8,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16_SNORM as GL_RG8I,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16_SNORM as GL_RG8_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_R16_SNORM as GL_RG8UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_R32F,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_R32I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_R32UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_RG16,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_RG16F,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_RG16I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_RG16_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_RG16UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_RGB10_A2,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_RGB10_A2UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_RGBA8,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_RGBA8I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_RGBA8_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16 as GL_RGBA8UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_R32F,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_R32I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_R32UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RG16,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RG16F,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RG16I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RG16_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RG16UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGB10_A2,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGB10_A2UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGBA8,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGBA8I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGBA8_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGBA8UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGB16 as GL_RGB16,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGB16 as GL_RGB16F,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGB16 as GL_RGB16I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGB16 as GL_RGB16_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGB16 as GL_RGB16UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGB16_SNORM as GL_RGB16,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGB16_SNORM as GL_RGB16F,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGB16_SNORM as GL_RGB16I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGB16_SNORM as GL_RGB16_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGB16_SNORM as GL_RGB16UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16 as GL_RG32F,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16 as GL_RG32I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16 as GL_RG32UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16 as GL_RGBA16,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16 as GL_RGBA16F,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16 as GL_RGBA16I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16 as GL_RGBA16_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16 as GL_RGBA16UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RG32F,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RG32I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RG32UI,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RGBA16,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RGBA16F,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RGBA16I,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RGBA16_SNORM,Fail
spec@arb_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RGBA16UI,Fail
spec@arb_texture_view@rendering-layers-image,Fail
spec@arb_texture_view@rendering-layers-image@layers rendering of image1DArray,Fail
spec@arb_texture_view@rendering-layers-image@layers rendering of imageCubeArray,Fail
@@ -599,8 +526,6 @@ spec@ext_framebuffer_multisample@unaligned-blit 4 stencil msaa,Fail
spec@ext_framebuffer_object@fbo-alphatest-nocolor,Fail
spec@ext_framebuffer_object@fbo-alphatest-nocolor-ff,Fail
spec@ext_framebuffer_object@fbo-blending-format-quirks,Fail
spec@ext_framebuffer_object@getteximage-formats init-by-clear-and-render,Fail
spec@ext_framebuffer_object@getteximage-formats init-by-rendering,Fail
spec@ext_packed_depth_stencil@texwrap formats bordercolor,Fail
spec@ext_packed_depth_stencil@texwrap formats bordercolor@GL_DEPTH24_STENCIL8- border color only,Fail
spec@ext_packed_depth_stencil@texwrap formats bordercolor-swizzled,Fail
@@ -634,46 +559,13 @@ spec@ext_texture_integer@texwrap formats bordercolor-swizzled@GL_RGBA32I- swizzl
spec@ext_texture_integer@texwrap formats bordercolor-swizzled@GL_RGBA32UI- swizzled- border color only,Fail
spec@ext_texture_integer@texwrap formats bordercolor-swizzled@GL_RGBA8I- swizzled- border color only,Fail
spec@ext_texture_integer@texwrap formats bordercolor-swizzled@GL_RGBA8UI- swizzled- border color only,Fail
spec@ext_texture_norm16@render,Fail
spec@ext_texture_norm16@render@format GL_R16_SNORM,Fail
spec@ext_texture_norm16@render@format GL_R16_SNORM read fail,Fail
spec@ext_texture_norm16@render@format GL_RG16_SNORM,Fail
spec@ext_texture_norm16@render@format GL_RG16_SNORM read fail,Fail
spec@ext_texture_norm16@render@format GL_RGB16_SNORM,Fail
spec@ext_texture_norm16@render@format GL_RGBA16_SNORM,Fail
spec@ext_texture_norm16@render@format GL_RGBA16_SNORM read fail,Fail
spec@ext_texture_shared_exponent@texwrap formats bordercolor-swizzled,Fail
spec@ext_texture_shared_exponent@texwrap formats bordercolor-swizzled@GL_RGB9_E5- swizzled- border color only,Fail
spec@ext_texture_snorm@fbo-alphatest-formats,Fail
spec@ext_texture_snorm@fbo-alphatest-formats@GL_R16_SNORM,Fail
spec@ext_texture_snorm@fbo-alphatest-formats@GL_RG16_SNORM,Fail
spec@ext_texture_snorm@fbo-alphatest-formats@GL_RGB16_SNORM,Fail
spec@ext_texture_snorm@fbo-alphatest-formats@GL_RGBA16_SNORM,Fail
spec@ext_texture_snorm@fbo-blending-formats,Fail
spec@ext_texture_snorm@fbo-blending-formats@GL_INTENSITY8_SNORM,Fail
spec@ext_texture_snorm@fbo-blending-formats@GL_INTENSITY_SNORM,Fail
spec@ext_texture_snorm@fbo-blending-formats@GL_LUMINANCE8_SNORM,Fail
spec@ext_texture_snorm@fbo-blending-formats@GL_LUMINANCE_SNORM,Fail
spec@ext_texture_snorm@fbo-blending-formats@GL_R16_SNORM,Fail
spec@ext_texture_snorm@fbo-blending-formats@GL_RG16_SNORM,Fail
spec@ext_texture_snorm@fbo-blending-formats@GL_RGB16_SNORM,Fail
spec@ext_texture_snorm@fbo-blending-formats@GL_RGBA16_SNORM,Fail
spec@ext_texture_snorm@fbo-colormask-formats,Fail
spec@ext_texture_snorm@fbo-colormask-formats@GL_R16_SNORM,Fail
spec@ext_texture_snorm@fbo-colormask-formats@GL_RG16_SNORM,Fail
spec@ext_texture_snorm@fbo-colormask-formats@GL_RGB16_SNORM,Fail
spec@ext_texture_snorm@fbo-colormask-formats@GL_RGBA16_SNORM,Fail
spec@ext_texture_snorm@fbo-generatemipmap-formats,Fail
spec@ext_texture_snorm@fbo-generatemipmap-formats@GL_R16_SNORM,Fail
spec@ext_texture_snorm@fbo-generatemipmap-formats@GL_R16_SNORM NPOT,Fail
spec@ext_texture_snorm@fbo-generatemipmap-formats@GL_RG16_SNORM,Fail
spec@ext_texture_snorm@fbo-generatemipmap-formats@GL_RG16_SNORM NPOT,Fail
spec@ext_texture_snorm@fbo-generatemipmap-formats@GL_RGB16_SNORM,Fail
spec@ext_texture_snorm@fbo-generatemipmap-formats@GL_RGB16_SNORM NPOT,Fail
spec@ext_texture_snorm@fbo-generatemipmap-formats@GL_RGBA16_SNORM,Fail
spec@ext_texture_snorm@fbo-generatemipmap-formats@GL_RGBA16_SNORM NPOT,Fail
spec@ext_texture_snorm@multisample-formats 2 gl_ext_texture_snorm,Fail
spec@ext_texture_snorm@multisample-formats 4 gl_ext_texture_snorm,Fail
spec@ext_texture_snorm@texwrap formats bordercolor-swizzled,Fail
spec@ext_texture_snorm@texwrap formats bordercolor-swizzled@GL_R16_SNORM- swizzled- border color only,Fail
spec@ext_texture_snorm@texwrap formats bordercolor-swizzled@GL_R8_SNORM- swizzled- border color only,Fail
@@ -902,6 +794,7 @@ spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_LUMINANCE_ALPHA/
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_LUMINANCE/Destination: GL_LUMINANCE,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_R16/Destination: GL_R16,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_R16I/Destination: GL_R16I,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_R16_SNORM/Destination: GL_R16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_R16UI/Destination: GL_R16UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_R32F/Destination: GL_R32F,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_R8/Destination: GL_R8,Fail
@@ -911,6 +804,7 @@ spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_R8UI/Destination
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RED/Destination: GL_RED,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RG16/Destination: GL_RG16,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RG16I/Destination: GL_RG16I,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RG16_SNORM/Destination: GL_RG16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RG16UI/Destination: GL_RG16UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RG32F/Destination: GL_RG32F,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RG32I/Destination: GL_RG32I,Fail
@@ -921,6 +815,7 @@ spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RG8_SNORM/Destin
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RG8UI/Destination: GL_RG8UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGB16/Destination: GL_RGB16,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGB16I/Destination: GL_RGB16I,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGB16_SNORM/Destination: GL_RGB16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGB16UI/Destination: GL_RGB16UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGB32F/Destination: GL_RGB32F,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGB32I/Destination: GL_RGB32I,Fail
@@ -931,6 +826,7 @@ spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGB8_SNORM/Desti
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGB8UI/Destination: GL_RGB8UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGBA16/Destination: GL_RGBA16,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGBA16I/Destination: GL_RGBA16I,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGBA16_SNORM/Destination: GL_RGBA16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGBA16UI/Destination: GL_RGBA16UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGBA32F/Destination: GL_RGBA32F,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=2@Source: GL_RGBA32I/Destination: GL_RGBA32I,Fail
@@ -951,6 +847,7 @@ spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_LUMINANCE_ALPHA/
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_LUMINANCE/Destination: GL_LUMINANCE,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_R16/Destination: GL_R16,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_R16I/Destination: GL_R16I,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_R16_SNORM/Destination: GL_R16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_R16UI/Destination: GL_R16UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_R32F/Destination: GL_R32F,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_R8/Destination: GL_R8,Fail
@@ -960,6 +857,7 @@ spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_R8UI/Destination
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RED/Destination: GL_RED,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RG16/Destination: GL_RG16,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RG16I/Destination: GL_RG16I,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RG16_SNORM/Destination: GL_RG16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RG16UI/Destination: GL_RG16UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RG32F/Destination: GL_RG32F,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RG32I/Destination: GL_RG32I,Fail
@@ -970,6 +868,7 @@ spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RG8_SNORM/Destin
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RG8UI/Destination: GL_RG8UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGB16/Destination: GL_RGB16,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGB16I/Destination: GL_RGB16I,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGB16_SNORM/Destination: GL_RGB16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGB16UI/Destination: GL_RGB16UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGB32F/Destination: GL_RGB32F,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGB32I/Destination: GL_RGB32I,Fail
@@ -980,6 +879,7 @@ spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGB8_SNORM/Desti
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGB8UI/Destination: GL_RGB8UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGBA16/Destination: GL_RGBA16,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGBA16I/Destination: GL_RGBA16I,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGBA16_SNORM/Destination: GL_RGBA16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGBA16UI/Destination: GL_RGBA16UI,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGBA32F/Destination: GL_RGBA32F,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGBA32I/Destination: GL_RGBA32I,Fail
@@ -991,24 +891,13 @@ spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGBA8UI/Destinat
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGBA/Destination: GL_RGBA,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RGB/Destination: GL_RGB,Fail
spec@nv_copy_image@nv_copy_image-formats --samples=4@Source: GL_RG/Destination: GL_RG,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_DEPTH_COMPONENT16/Destination: GL_DEPTH_COMPONENT16,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_DEPTH_COMPONENT24/Destination: GL_DEPTH_COMPONENT24,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_DEPTH_COMPONENT32/Destination: GL_DEPTH_COMPONENT32,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_DEPTH_COMPONENT/Destination: GL_DEPTH_COMPONENT,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_DEPTH_STENCIL/Destination: GL_DEPTH_STENCIL,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_R16/Destination: GL_R16,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_R16_SNORM/Destination: GL_R16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_RG16/Destination: GL_RG16,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_RG16_SNORM/Destination: GL_RG16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_RGB16/Destination: GL_RGB16,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_RGB16_SNORM/Destination: GL_RGB16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_RGBA16/Destination: GL_RGBA16,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_RGBA16_SNORM/Destination: GL_RGBA16_SNORM,Fail
spec@nv_copy_image@nv_copy_image-formats@Source: GL_STENCIL_INDEX8/Destination: GL_STENCIL_INDEX8,Fail
spec@nv_primitive_restart@primitive-restart-draw-mode-polygon,Fail
spec@nv_primitive_restart@primitive-restart-draw-mode-quads,Fail
spec@nv_primitive_restart@primitive-restart-draw-mode-quad_strip,Fail
spec@nv_read_depth@read_depth_gles3,Fail
spec@oes_egl_image_external_essl3@oes_egl_image_external_essl3,Crash
spec@oes_texture_view@rendering-formats@clear GL_R16F as GL_RG8,Fail
spec@oes_texture_view@rendering-formats@clear GL_R16F as GL_RG8I,Fail
@@ -1200,94 +1089,12 @@ spec@oes_texture_view@rendering-formats@render to GL_RGBA8UI as GL_RG16_SNORM,Fa
spec@oes_texture_view@rendering-formats@render to GL_RGBA8UI as GL_RG16UI,Fail
spec@oes_texture_view@rendering-formats@render to GL_RGBA8UI as GL_RGB10_A2,Fail
spec@oes_texture_view@rendering-formats@render to GL_RGBA8UI as GL_RGB10_A2UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16 as GL_R16,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16 as GL_R16F,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16 as GL_R16I,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16 as GL_R16_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16 as GL_R16UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16 as GL_RG8,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16 as GL_RG8I,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16 as GL_RG8_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16 as GL_RG8UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16_SNORM as GL_R16,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16_SNORM as GL_R16F,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16_SNORM as GL_R16I,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16_SNORM as GL_R16_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16_SNORM as GL_R16UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16_SNORM as GL_RG8,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16_SNORM as GL_RG8I,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16_SNORM as GL_RG8_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_R16_SNORM as GL_RG8UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_R32F,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_R32I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_R32UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_RG16,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_RG16F,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_RG16I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_RG16_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_RG16UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_RGB10_A2,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_RGB10_A2UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_RGBA8,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_RGBA8I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_RGBA8_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16 as GL_RGBA8UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_R32F,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_R32I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_R32UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RG16,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RG16F,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RG16I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RG16_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RG16UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGB10_A2,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGB10_A2UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGBA8,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGBA8I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGBA8_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_RG16_SNORM as GL_RGBA8UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGB16 as GL_RGB16,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGB16 as GL_RGB16F,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGB16 as GL_RGB16I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGB16 as GL_RGB16_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGB16 as GL_RGB16UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGB16_SNORM as GL_RGB16,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGB16_SNORM as GL_RGB16F,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGB16_SNORM as GL_RGB16I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGB16_SNORM as GL_RGB16_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGB16_SNORM as GL_RGB16UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16 as GL_RG32F,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16 as GL_RG32I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16 as GL_RG32UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16 as GL_RGBA16,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16 as GL_RGBA16F,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16 as GL_RGBA16I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16 as GL_RGBA16_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16 as GL_RGBA16UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RG32F,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RG32I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RG32UI,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RGBA16,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RGBA16F,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RGBA16I,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RGBA16_SNORM,Fail
spec@oes_texture_view@rendering-formats@sample GL_RGBA16_SNORM as GL_RGBA16UI,Fail
spec@!opengl 1.0@gl-1.0-edgeflag,Crash
spec@!opengl 1.0@gl-1.0-edgeflag-quads,Crash
spec@!opengl 1.0@gl-1.0-no-op-paths,Fail
spec@!opengl 1.0@gl-1.0-scissor-offscreen,Fail
spec@!opengl 1.0@gl-1.0-spot-light,Fail
spec@!opengl 1.0@rasterpos,Crash
spec@!opengl 1.1@draw-pixels,Fail
spec@!opengl 1.1@getteximage-depth,Fail
spec@!opengl 1.1@getteximage-depth@GL_TEXTURE_1D_ARRAY-GL_DEPTH_COMPONENT16,Fail
spec@!opengl 1.1@getteximage-depth@GL_TEXTURE_1D-GL_DEPTH_COMPONENT16,Fail
spec@!opengl 1.1@getteximage-depth@GL_TEXTURE_2D_ARRAY-GL_DEPTH_COMPONENT16,Fail
spec@!opengl 1.1@getteximage-depth@GL_TEXTURE_2D-GL_DEPTH_COMPONENT16,Fail
spec@!opengl 1.1@getteximage-depth@GL_TEXTURE_CUBE_MAP_ARRAY-GL_DEPTH_COMPONENT16,Fail
spec@!opengl 1.1@getteximage-depth@GL_TEXTURE_CUBE_MAP-GL_DEPTH_COMPONENT16,Fail
spec@!opengl 1.1@getteximage-depth@GL_TEXTURE_RECTANGLE-GL_DEPTH_COMPONENT16,Fail
spec@!opengl 1.1@getteximage-formats,Fail
spec@!opengl 1.1@linestipple@Factor 2x,Fail
spec@!opengl 1.1@linestipple@Factor 3x,Fail
spec@!opengl 1.1@linestipple,Fail
@@ -1309,392 +1116,6 @@ spec@!opengl 1.1@polygon-mode-offset@config 6: Expected blue pixel in center,Fai
spec@!opengl 1.1@polygon-mode-offset@config 6: Expected white pixel on right edge,Fail
spec@!opengl 1.1@polygon-mode-offset@config 6: Expected white pixel on top edge,Fail
spec@!opengl 1.1@polygon-mode-offset,Fail
spec@!opengl 1.1@teximage-colors gl_r16@Exact upload-download of GL_R16,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@Exact upload-download of GL_R16_SNORM,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_ABGR_EXT and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_ABGR_EXT and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_ABGR_EXT and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_ABGR_EXT and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_10_10_10_2,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_2_10_10_10_REV,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_8_8_8_8,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_8_8_8_8_REV,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_1_5_5_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_4_4_4_4,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_4_4_4_4_REV,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_5_5_5_1,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGR and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGR and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGR and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGR and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGR and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGR and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_BGR and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE_ALPHA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE_ALPHA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE_ALPHA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE_ALPHA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RED and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RED and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RED and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RED and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RED and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RED and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RED and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RG and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RG and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RG and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RG and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RG and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RG and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RG and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_10_10_10_2,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_2_10_10_10_REV,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_8_8_8_8,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_8_8_8_8_REV,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_1_5_5_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_4_4_4_4,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_4_4_4_4_REV,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_5_5_5_1,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGB and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGB and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGB and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGB and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE_2_3_3_REV,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE_3_3_2,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGB and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT_5_6_5,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT_5_6_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_r16_snorm@GL_R16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16@Exact upload-download of GL_RG16,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@Exact upload-download of GL_RG16_SNORM,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_ABGR_EXT and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_ABGR_EXT and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_ABGR_EXT and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_ABGR_EXT and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_10_10_10_2,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_2_10_10_10_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_8_8_8_8,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_8_8_8_8_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_1_5_5_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_4_4_4_4,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_4_4_4_4_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_5_5_5_1,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGR and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGR and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGR and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGR and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGR and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGR and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_BGR and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_GREEN and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_GREEN and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_GREEN and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_GREEN and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_GREEN and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_GREEN and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_GREEN and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE_ALPHA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE_ALPHA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE_ALPHA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE_ALPHA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RED and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RED and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RED and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RED and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RED and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RED and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RED and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RG and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RG and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RG and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RG and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RG and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RG and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RG and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_10_10_10_2,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_2_10_10_10_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_8_8_8_8,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_8_8_8_8_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_1_5_5_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_4_4_4_4,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_4_4_4_4_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_5_5_5_1,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGB and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGB and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGB and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGB and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE_2_3_3_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE_3_3_2,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGB and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT_5_6_5,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT_5_6_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rg16_snorm@GL_RG16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16@Exact upload-download of GL_RGB16,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@Exact upload-download of GL_RGB16_SNORM,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_ABGR_EXT and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_ABGR_EXT and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_ABGR_EXT and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_ABGR_EXT and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_10_10_10_2,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_2_10_10_10_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_8_8_8_8,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_8_8_8_8_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_1_5_5_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_4_4_4_4,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_4_4_4_4_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_5_5_5_1,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGR and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGR and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGR and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGR and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGR and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGR and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BGR and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BLUE and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BLUE and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BLUE and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BLUE and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BLUE and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BLUE and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_BLUE and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_GREEN and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_GREEN and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_GREEN and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_GREEN and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_GREEN and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_GREEN and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_GREEN and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE_ALPHA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE_ALPHA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE_ALPHA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE_ALPHA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RED and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RED and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RED and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RED and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RED and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RED and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RED and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RG and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RG and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RG and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RG and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RG and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RG and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RG and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_10_10_10_2,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_2_10_10_10_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_8_8_8_8,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_8_8_8_8_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_1_5_5_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_4_4_4_4,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_4_4_4_4_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_5_5_5_1,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGB and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGB and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGB and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGB and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE_2_3_3_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE_3_3_2,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGB and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT_5_6_5,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT_5_6_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgb16_snorm@GL_RGB16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16@Exact upload-download of GL_RGBA16,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@Exact upload-download of GL_RGBA16_SNORM,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ABGR_EXT and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ABGR_EXT and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ABGR_EXT and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ABGR_EXT and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ABGR_EXT and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ALPHA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ALPHA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ALPHA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ALPHA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ALPHA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ALPHA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_ALPHA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_10_10_10_2,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_2_10_10_10_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_8_8_8_8,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT_8_8_8_8_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_1_5_5_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_4_4_4_4,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_4_4_4_4_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT_5_5_5_1,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGRA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGR and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGR and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGR and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGR and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGR and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGR and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BGR and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BLUE and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BLUE and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BLUE and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BLUE and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BLUE and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BLUE and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_BLUE and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_GREEN and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_GREEN and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_GREEN and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_GREEN and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_GREEN and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_GREEN and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_GREEN and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE_ALPHA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE_ALPHA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE_ALPHA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE_ALPHA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE_ALPHA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_LUMINANCE and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RED and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RED and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RED and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RED and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RED and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RED and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RED and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RG and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RG and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RG and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RG and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RG and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RG and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RG and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_10_10_10_2,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_2_10_10_10_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_8_8_8_8,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT_8_8_8_8_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_1_5_5_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_4_4_4_4,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_4_4_4_4_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT_5_5_5_1,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGBA and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGB and GL_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGB and GL_FLOAT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGB and GL_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGB and GL_SHORT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE_2_3_3_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE_3_3_2,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGB and GL_UNSIGNED_BYTE,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGB and GL_UNSIGNED_INT,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT_5_6_5,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT_5_6_5_REV,Fail
spec@!opengl 1.1@teximage-colors gl_rgba16_snorm@GL_RGBA16_SNORM texture with GL_RGB and GL_UNSIGNED_SHORT,Fail
spec@!opengl 1.1@texwrap formats bordercolor-swizzled,Fail
spec@!opengl 1.1@texwrap formats bordercolor-swizzled@GL_R3_G3_B2- swizzled- border color only,Fail
spec@!opengl 1.1@texwrap formats bordercolor-swizzled@GL_RGB10_A2- swizzled- border color only,Fail