GetDevices: Also allow `\.` to be part of the host name
[platform/upstream/VK-GL-CTS.git] / modules / glshared / glsFboCompletenessTests.cpp
index 9627198..db75fdf 100644 (file)
@@ -289,19 +289,6 @@ static const FormatExtEntry s_esExtFormats[] =
                GLS_ARRAY_RANGE(s_nvPackedFloatRboFormats)
        },
 
-       // Some Tegra drivers report GL_EXT_packed_float even for ES. Treat it as
-       // a synonym for the NV_ version.
-       {
-               "GL_EXT_packed_float",
-               COLOR_RENDERABLE | TEXTURE_VALID,
-               GLS_ARRAY_RANGE(s_nvPackedFloatTexFormats)
-       },
-       {
-               "GL_EXT_packed_float GL_EXT_color_buffer_half_float",
-               REQUIRED_RENDERABLE | COLOR_RENDERABLE | RENDERBUFFER_VALID,
-               GLS_ARRAY_RANGE(s_nvPackedFloatRboFormats)
-       },
-
        {
                "GL_EXT_sRGB",
                COLOR_RENDERABLE | TEXTURE_VALID,
@@ -399,7 +386,7 @@ Context::Context (TestContext& testCtx,
                                  CheckerFactory& factory)
        : m_testCtx                             (testCtx)
        , m_renderCtx                   (renderCtx)
-       , m_verifier                    (m_ctxFormats, factory)
+       , m_verifier                    (m_ctxFormats, factory, renderCtx)
        , m_haveMultiColorAtts  (false)
 {
        FormatExtEntries extRange = GLS_ARRAY_RANGE(s_esExtFormats);
@@ -459,12 +446,12 @@ static void logAffectingExtensions (const char* prefix, const FormatDB& db, cons
                extName = *it++;
                while (it != requiredExtensions.end())
                {
-                       msg << extName;
+                       msg << getExtensionDescription(extName);
                        extName = *it++;
                        msg << (it == requiredExtensions.end() ? " and " : ", ");
                }
 
-               msg << extName << '\n';
+               msg << getExtensionDescription(extName) << '\n';
        }
 }