Merge "Merge "Merge "DEPTH_STENCIL_OES as tex format requires OES_depth_texture"...
[platform/upstream/VK-GL-CTS.git] / framework / common / tcuTexLookupVerifier.hpp
index 192986e..6f6aaec 100644 (file)
@@ -77,21 +77,11 @@ struct IntLookupPrecision
  *//*--------------------------------------------------------------------*/
 struct LodPrecision
 {
-       enum Rule
-       {
-               RULE_OPENGL             = 0,    //!< OpenGL LOD
-               RULE_VULKAN,                    //!< Vulkan LOD
-
-               RULE_LAST
-       };
-
-       Rule            rule;                   //!< LOD computation rule (Vulkan or OpenGL)
        int                     derivateBits;   //!< Number of bits in derivates. (Floating-point)
        int                     lodBits;                //!< Number of bits in final lod (accuracy of log2()). (Fixed-point)
 
-       LodPrecision (Rule rule_)
-               : rule                  (rule_)
-               , derivateBits  (22)
+       LodPrecision (void)
+               : derivateBits  (22)
                , lodBits               (16)
        {
        }