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

  /packages/services/Car/evs/app/
TexWrapper.cpp 152 png_byte ** rowPointers = (png_byte**)malloc(height * sizeof(png_byte*));
153 if (rowPointers == NULL)
163 rowPointers[r] = buffer + r*stride;
168 png_read_image(pngControl, rowPointers);
190 free(rowPointers);
  /external/deqp/framework/common/
tcuImageIO.cpp 193 std::vector<png_bytep> rowPointers(src.getHeight());
195 rowPointers[y] = (deUint8*)src.getDataPtr() + y*src.getRowPitch();
197 png_write_image(pngPtr, &rowPointers[0]);
  /external/deqp/framework/qphelper/
qpTestLog.c 699 static deBool writeCompressedPNG (png_structp png, png_infop info, png_byte** rowPointers, int width, int height, int colorFormat)
711 png_write_image(png, rowPointers);
725 png_byte** rowPointers = DE_NULL;
733 rowPointers = (png_byte**)deMalloc((size_t)height * sizeof(png_byte*));
734 if (!rowPointers)
738 rowPointers[ndx] = (png_byte*)((const deUint8*)data + ndx*rowStride);
748 compressOk = writeCompressedPNG(png, info, rowPointers, width, height,
761 deFree(rowPointers);
    [all...]

Completed in 756 milliseconds