Home | History | Annotate | Download | only in functional

Lines Matching refs:TexTypeCoordDims

168 template <TextureType> struct TexTypeCoordDims;
169 template <> struct TexTypeCoordDims<TEXTURETYPE_2D> { enum { V = 2 }; };
170 template <> struct TexTypeCoordDims<TEXTURETYPE_CUBE> { enum { V = 3 }; };
171 template <> struct TexTypeCoordDims<TEXTURETYPE_2D_ARRAY> { enum { V = 3 }; };
172 template <> struct TexTypeCoordDims<TEXTURETYPE_3D> { enum { V = 3 }; };
175 template <TextureType TexType> struct TexTypeCoordVec { typedef tcu::Vector<float, TexTypeCoordDims<TexType>::V> t; };
233 enum { TEX_COORD_DIMS = TexTypeCoordDims <TexType>::V };