Home | History | Annotate | Download | only in functional

Lines Matching refs:TexTypeSizeDims

162 template <TextureType> struct TexTypeSizeDims;
163 template <> struct TexTypeSizeDims<TEXTURETYPE_2D> { enum { V = 2 }; };
164 template <> struct TexTypeSizeDims<TEXTURETYPE_CUBE> { enum { V = 2 }; };
165 template <> struct TexTypeSizeDims<TEXTURETYPE_2D_ARRAY> { enum { V = 3 }; };
166 template <> struct TexTypeSizeDims<TEXTURETYPE_3D> { enum { V = 3 }; };
174 template <TextureType TexType> struct TexTypeSizeIVec { typedef tcu::Vector<int, TexTypeSizeDims<TexType>::V> t; };