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

  /external/deqp/modules/gles2/functional/
es2fVertexTextureTests.cpp 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 };
    [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexTextureTests.cpp 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 };
    [all...]

Completed in 54 milliseconds