HomeSort by relevance Sort by last modified time
    Searched refs:EnumPointerFmt (Results 1 - 3 of 3) sorted by null

  /external/deqp/framework/opengl/
gluStrUtil.hpp 37 class EnumPointerFmt
46 EnumPointerFmt (const deUint32* value_, deUint32 size_, GetEnumNameFunc getName_) : value(value_), size(size_), getName(getName_) {}
76 std::ostream& operator<< (std::ostream& str, const EnumPointerFmt& fmt);
80 inline detail::EnumPointerFmt getEnumPointerStr (const deUint32* value, deInt32 size, detail::EnumPointerFmt::GetEnumNameFunc getName)
82 return detail::EnumPointerFmt(value, (deUint32)de::max(0, size), getName);
92 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments);
gluStrUtil.cpp 52 std::ostream& operator<< (std::ostream& str, const EnumPointerFmt& fmt)
121 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments)
123 return detail::EnumPointerFmt(attachments, (deUint32)numAttachments, getInvalidateAttachmentName);
  /external/deqp/framework/egl/
egluCallLogWrapper.cpp 89 class EnumPointerFmt
95 EnumPointerFmt (const int* value_, GetEnumNameFunc getName_) : value(value_), getName(getName_) {}
98 inline std::ostream& operator<< (std::ostream& str, EnumPointerFmt fmt)
106 inline EnumPointerFmt getEnumPointerStr (const int* value, GetEnumNameFunc getName)
108 return EnumPointerFmt(value, getName);

Completed in 931 milliseconds