Home | History | Annotate | Download | only in functional

Lines Matching refs:TexTypeCoordDims

137 template <TextureType> struct TexTypeCoordDims;
138 template <> struct TexTypeCoordDims<TEXTURETYPE_2D> { enum { V = 2 }; };
139 template <> struct TexTypeCoordDims<TEXTURETYPE_CUBE> { enum { V = 3 }; };
142 template <TextureType TexType> struct TexTypeCoordVec { typedef tcu::Vector<float, TexTypeCoordDims<TexType>::V> t; };
184 enum { TEX_COORD_DIMS = TexTypeCoordDims <TexType>::V };