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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterEffect.cpp 216 unsigned char* pixelData = imageArray->data();
224 unsigned char* lastPixel = pixelData + (pixelArrayLength & ~0x3f);
226 // Increments pixelData by 64.
227 uint8x16x4_t sixteenPixels = vld4q_u8(pixelData);
231 vst4q_u8(pixelData, sixteenPixels);
232 pixelData += 64;
233 } while (pixelData < lastPixel);
246 unsigned char a = *(pixelData + 3);
249 if (*pixelData > a)
250 *pixelData = a
    [all...]
  /external/deqp/modules/gles2/functional/
es2fReadPixelsTests.cpp 236 std::vector<deUint8> pixelData;
239 pixelData.resize(rowPitch * height, 0);
242 GLU_CHECK_CALL(glReadPixels(0, 0, width, height, glFormat, glType, &(pixelData[0])));
252 if (tcu::bilinearCompare(m_testCtx.getLog(), "Result", "Result", reference.getLevel(0), tcu::PixelBufferAccess(format, width, height, 1, rowPitch, 0, &(pixelData[0])), tcu::RGBA(redThreshold, greenThreshold, blueThreshold, alphaThreshold), tcu::COMPARE_LOG_RESULT))
266 if (tcu::floatThresholdCompare(m_testCtx.getLog(), "Result", "Result", reference.getLevel(0), tcu::PixelBufferAccess(format, width, height, 1, rowPitch, 0, &(pixelData[0])), tcu::Vec4(redThreshold, greenThreshold, blueThreshold, alphaThreshold), tcu::COMPARE_LOG_RESULT))
  /external/deqp/modules/gles3/functional/
es3fReadPixelsTests.cpp 80 void clearColor (tcu::Texture2D& reference, vector<deUint8>& pixelData, bool align, int pixelSize);
235 void ReadPixelsTest::clearColor (tcu::Texture2D& reference, vector<deUint8>& pixelData, bool align, int pixelSize)
339 pixelData.resize(rowPitch * (m_height + m_skipRows), 0);
341 GLU_CHECK_CALL(glReadPixels(0, 0, m_width, m_height, m_format, m_type, &(pixelData[0])));
376 vector<deUint8> pixelData;
377 clearColor(reference, pixelData, align, pixelSize);
391 if (tcu::bilinearCompare(m_testCtx.getLog(), "Result", "Result", reference.getLevel(0), tcu::PixelBufferAccess(format, m_width, m_height, 1, rowPitch, 0, &(pixelData[0])), tcu::RGBA(redThreshold, greenThreshold, blueThreshold, alphaThreshold), tcu::COMPARE_LOG_RESULT))
405 if (tcu::floatThresholdCompare(m_testCtx.getLog(), "Result", "Result", reference.getLevel(0), tcu::PixelBufferAccess(format, m_width, m_height, 1, rowPitch, 0, &(pixelData[pixelSize * m_skipPixels + m_skipRows * rowPitch])), tcu::Vec4(redThreshold, greenThreshold, blueThreshold, alphaThreshold), tcu::COMPARE_LOG_RESULT))
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_ktx.cpp 119 const etc1_byte *buf = reinterpret_cast<const etc1_byte *>(ktxFile.pixelData());
146 const uint8_t *srcRow = reinterpret_cast<const uint8_t *>(ktxFile.pixelData());
176 const uint8_t *srcRow = reinterpret_cast<const uint8_t *>(ktxFile.pixelData());
  /external/skia/src/images/
SkImageDecoder_ktx.cpp 119 const etc1_byte *buf = reinterpret_cast<const etc1_byte *>(ktxFile.pixelData());
146 const uint8_t *srcRow = reinterpret_cast<const uint8_t *>(ktxFile.pixelData());
176 const uint8_t *srcRow = reinterpret_cast<const uint8_t *>(ktxFile.pixelData());
  /external/chromium_org/third_party/skia/third_party/ktx/
ktx.h 49 const uint8_t *pixelData(int mipmap = 0) const {
116 class PixelData {
118 PixelData(const uint8_t *ptr, size_t sz) : fDataSz(sz), fDataPtr(ptr) { }
132 SkTDArray<PixelData> fPixelData;
  /external/skia/third_party/ktx/
ktx.h 49 const uint8_t *pixelData(int mipmap = 0) const {
116 class PixelData {
118 PixelData(const uint8_t *ptr, size_t sz) : fDataSz(sz), fDataPtr(ptr) { }
132 SkTDArray<PixelData> fPixelData;
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
BMPImageReader.cpp 729 uint8_t pixelData = m_data->data()[m_decodedOffset + byte];
731 const size_t colorIndex = (pixelData >> (8 - m_infoHeader.biBitCount)) & mask;
750 pixelData <<= m_infoHeader.biBitCount;
    [all...]
  /external/chromium_org/third_party/skia/src/utils/mac/
SkCreateCGImageRef.cpp 46 static void SkBitmap_ReleaseInfo(void* info, const void* pixelData, size_t size) {
  /external/skia/src/utils/mac/
SkCreateCGImageRef.cpp 46 static void SkBitmap_ReleaseInfo(void* info, const void* pixelData, size_t size) {
  /external/chromium_org/third_party/angle/src/libGLESv2/
Texture.cpp 315 const void *pixelData = pixels;
323 pixelData = static_cast<const unsigned char *>(bufferData) + offset;
326 if (pixelData != NULL)
328 image->loadData(0, 0, 0, image->getWidth(), image->getHeight(), image->getDepth(), unpack.alignment, type, pixelData);
367 const void *pixelData = pixels;
375 pixelData = static_cast<const unsigned char *>(bufferData) + offset;
378 if (pixelData != NULL)
380 image->loadData(xoffset, yoffset, zoffset, width, height, depth, unpack.alignment, type, pixelData);
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
SkGr.cpp 177 bytes = ktx.pixelData();
  /external/skia/src/gpu/
SkGr.cpp 177 bytes = ktx.pixelData();
  /external/deqp/modules/gles31/functional/
es31fShaderImageLoadStoreTests.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
SerializedScriptValue.cpp 579 void writeImageData(uint32_t width, uint32_t height, const uint8_t* pixelData, uint32_t pixelDataLength)
585 append(pixelData, pixelDataLength);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 1069 milliseconds