Lines Matching defs:const
57 const Vec4 m_constantColor;
68 const UVec2 viewportSize = getViewportSize();
69 const int width = viewportSize.x();
70 const int height = viewportSize.y();
71 const tcu::RGBA threshold (2, 2, 2, 2);
76 const deUint16 indices[12] =
105 const float vertices[] =
121 FragmentInputComponentCase (TestContext& testCtx, const string& name, const deUint16 inputComponents);
124 void initPrograms(SourceCollections& dst) const;
125 TestInstance* createInstance(Context& context) const;
128 FragmentInputComponentCase (const FragmentInputComponentCase&);
129 const deUint16 m_inputComponents;
132 FragmentInputComponentCase::FragmentInputComponentCase (TestContext& testCtx, const string& name, const deUint16 inputComponents)
142 void FragmentInputComponentCase::initPrograms (SourceCollections& dst) const
144 const tcu::StringTemplate vertexCodeTemplate(
154 const tcu::StringTemplate fragmentCodeTemplate(
221 TestInstance* FragmentInputComponentCase::createInstance (Context& context) const
223 const InstanceInterface& vki = context.getInstanceInterface();
224 const VkPhysicalDevice physDevice = context.getPhysicalDevice();
225 const VkPhysicalDeviceLimits limits = getPhysicalDeviceProperties(vki, physDevice).limits;
226 const deUint16 maxFragmentInputComponents = (deUint16)limits.maxFragmentInputComponents;
227 const deUint16 maxVertexOutputComponents = (deUint16)limits.maxVertexOutputComponents;
231 const std::string notSupportedStr = "Unsupported number of fragment input components (" +
240 const std::string notSupportedStr = "Unsupported number of user specified vertex output components (" +