History log of /external/deqp/external/openglcts/modules/gl/gl4cCopyImageTests.cpp
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
412798dfb7d915b8eb765e7bc148c5e28677d0ed 10-May-2017 Jeannot Breton <jbreton@nvidia.com> Remove copy_image special path for rgb9e5/rg11b10

Copy_image is similar to a memcpy. When analyzing copy_image result,
the test have a special path for rgb9e5 and rg11b10.
Instead of using a memcmp, it converts each component to float and
then compare values.

This could be problematic, when data from other formats is
reinterpreted as rgb9e5/rg11b10, the result can be INF or NAN.

Doing a float equal comparison on 2 NAN values will return false,
so we can have 2 identical 32-bits values that are considered
different by the test because they are reinterpreted as float.

This change remove the special path for rgb9e5 and rg11b10.
I don't think it is required since copy_image should be like a
memcpy, a memcmp should be enough to verify the result

Affects:

KHR-GL45.copy_image.functional

Components: OpenGL

VK-GL-CTS issue: 404

Change-Id: Ifc7f7b4c8d62692e9364510ebc4e4162468e9568
/external/deqp/external/openglcts/modules/gl/gl4cCopyImageTests.cpp
e3025e58894ca6c58880d8726d7fbce535e78ef5 05-Apr-2017 Slawomir Cygan <slawomir.cygan@intel.com> copy_image test: do not require compressed formats on CM_ARRAY

Spec:
"An INVALID_OPERATION error is generated by TexImage3D if internalformat
is one of the EAC, ETC2, or RGTC compressed formats and either border is non-zero,
or target is not TEXTURE_2D_ARRAY."

Affects:
GL44-CTS.copy_image.incompatible_formats_compression

Components: OpenGL

VK-GL-CTS issue: 352

Change-Id: I77cbc09c2383d7d055776e1665f25b8c6051ee7d
/external/deqp/external/openglcts/modules/gl/gl4cCopyImageTests.cpp
fef80039ff875a51806b54d151c5f2d0c12daf12 24-Mar-2017 Kenneth Graunke <kenneth.w.graunke@intel.com> Set nearest filtering in GL CopyImage tests.

glCopyImageSubData requires textures to be mipmap complete. These
tests create integer textures, but left the default min filter of
GL_NEAREST_MIPMAP_LINEAR or GL_LINEAR (for rectangle textures) in
place. The completeness rules say that integer textures cannot be
mipmap complete with linear filtering.

Affects:
- GL45-CTS.copy_image.smoke_test
- GL45-CTS.copy_image.incompatible_formats
- GL45-CTS.copy_image.incompatible_formats_compression

Components: OpenGL
Khronos bugzilla: 16224
VK-GL-CTS issue: 330

Change-Id: I9554402ce348eb7dda63bf01b0548f68374d334a
/external/deqp/external/openglcts/modules/gl/gl4cCopyImageTests.cpp
84322c9402f810da3cd80b52e9f9ef72150a9004 29-Nov-2016 Alexander Galazin <alexander.galazin@arm.com> Reformat GL CTS according to the clang-format rules.

Mostly license statement is affected.

Change-Id: I41bcd7fbdf88b6e6acda8e723d88c57f5c5374a7
/external/deqp/external/openglcts/modules/gl/gl4cCopyImageTests.cpp
48087f5f0eb08759ee763f98daf3b34becb74559 14-Nov-2016 Pyry Haulos <phaulos@google.com> Import Khronos OpenGL CTS

Change-Id: Ic6e4341dedb44dfd4ebaaeba7699a5e46202a8b3
/external/deqp/external/openglcts/modules/gl/gl4cCopyImageTests.cpp