Lines Matching defs:dst
1270 void getReferenceValues (TextureFormat storageFormat, TextureFormat viewFormat, vector<Vector<T, 4> >& dst)
1276 dst.resize(numPixels);
1281 T* dstPixPtr = (T*)&dst[pixelNdx];
1334 void copyPixels (const ConstPixelBufferAccess& src, const PixelBufferAccess& dst)
1337 dst.setPixel(src.getPixelT<T>(ndx, 0, 0), ndx, 0, 0);
1340 void copyGetSetDepth (const ConstPixelBufferAccess& src, const PixelBufferAccess& dst)
1343 dst.setPixDepth(src.getPixDepth(ndx, 0, 0), ndx, 0, 0);
1346 void copyGetSetStencil (const ConstPixelBufferAccess& src, const PixelBufferAccess& dst)
1349 dst.setPixStencil(src.getPixStencil(ndx, 0, 0), ndx, 0, 0);
1352 void copyPixels (const ConstPixelBufferAccess& src, const PixelBufferAccess& dst)
1354 switch (getTextureChannelClass(dst.getFormat().type))
1359 copyPixels<float>(src, dst);
1363 copyPixels<deInt32>(src, dst);
1367 copyPixels<deUint32>(src, dst);