Lines Matching refs:value
72 inline StringFmt getStringStr (const char* value) { return StringFmt(value); }
73 inline StringFmt getStringStr (const glw::GLubyte* value) { return StringFmt((const char*)value); }
81 const int* value;
83 FboParamPtrFmt (deUint32 param_, const int* value_) : param(param_), value(value_) {}
88 if (fmt.value)
93 return str << tcu::Format::Enum<int, 2>(getFramebufferAttachmentTypeName, *fmt.value);
96 return str << tcu::Format::Enum<int, 2>(getCubeMapFaceName, *fmt.value);
99 return str << tcu::Format::Enum<int, 2>(getTypeName, *fmt.value);
102 return str << tcu::Format::Enum<int, 2>(getFramebufferColorEncodingName, *fmt.value);
105 return str << tcu::Format::Enum<int, 2>(getBooleanName, *fmt.value);
116 return str << *fmt.value;
119 return str << tcu::toHex(*fmt.value);
126 inline FboParamPtrFmt getFramebufferAttachmentParameterValueStr (deUint32 param, const int* value)
128 return FboParamPtrFmt(param, value);