Lines Matching refs:tex
174 * glVertexAttribPointer() (for position and tex coord) or glDrawElements()
318 static inline IVec2 getTextureSize (const glu::Texture2D& tex)
320 const tcu::Texture2D& ref = tex.getRefTexture();
324 static inline IVec2 getTextureSize (const glu::TextureCube& tex)
326 const tcu::TextureCube& ref = tex.getRefTexture();
356 static inline Vec4 sample (const tcu::Texture2D& tex, const Vec2& coord, float lod, const tcu::Sampler& sam) { return tex.sample(sam, coord.x(), coord.y(), lod); }
357 static inline Vec4 sample (const tcu::TextureCube& tex, const Vec3& coord, float lod, const tcu::Sampler& sam) { return tex.sample(sam, coord.x(), coord.y(), coord.z(), lod); }