Home | History | Annotate | Download | only in functional

Lines Matching refs:numElems

258 static void readDataMapped (const glw::Functions& gl, deUint32 bufferTarget, int numElems, T* dst)
260 const int numBytes = numElems*(int)sizeof(T);
265 for (int i = 0; i < numElems; i++)
272 static vector<T> readDataMapped (const glw::Functions& gl, deUint32 bufferTarget, int numElems)
274 vector<T> result(numElems);
275 readDataMapped(gl, bufferTarget, numElems, &result[0]);