Searched defs:pixelData (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/angle/tests/angle_tests/
H A DClearTest.cpp109 unsigned char pixelData[] = { 255, 255, 255, 255 }; local
117 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, pixelData);
121 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, pixelData);
/external/chromium_org/third_party/skia/third_party/ktx/
H A Dktx.h50 const uint8_t *pixelData(int mipmap = 0) const { function in class:SkKTXFile
/external/skia/third_party/ktx/
H A Dktx.h49 const uint8_t *pixelData(int mipmap = 0) const { function in class:SkKTXFile
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
H A DBMPImageReader.cpp729 uint8_t pixelData = m_data->data()[m_decodedOffset + byte]; local
731 const size_t colorIndex = (pixelData >> (8 - m_infoHeader.biBitCount)) & mask;
750 pixelData <<= m_infoHeader.biBitCount;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DTextureD3D.cpp103 const void *pixelData = pixels; local
113 pixelData = static_cast<const unsigned char *>(bufferData) + offset;
116 if (pixelData != NULL)
118 image->loadData(0, 0, 0, image->getWidth(), image->getHeight(), image->getDepth(), unpack.alignment, type, pixelData);
126 const void *pixelData = pixels; local
136 pixelData = static_cast<const unsigned char *>(bufferData) + offset;
139 if (pixelData != NULL)
144 image->loadData(xoffset, yoffset, zoffset, width, height, depth, unpack.alignment, type, pixelData);
/external/chromium_org/third_party/skia/src/utils/mac/
H A DSkCreateCGImageRef.cpp46 static void SkBitmap_ReleaseInfo(void* info, const void* pixelData, size_t size) { argument
/external/deqp/modules/gles2/functional/
H A Des2fReadPixelsTests.cpp236 std::vector<deUint8> pixelData; local
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/
H A Des3fReadPixelsTests.cpp80 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) argument
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; local
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/skia/src/utils/mac/
H A DSkCreateCGImageRef.cpp46 static void SkBitmap_ReleaseInfo(void* info, const void* pixelData, size_t size) { argument
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilterEffect.cpp216 unsigned char* pixelData = imageArray->data(); local
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
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValue.cpp579 void writeImageData(uint32_t width, uint32_t height, const uint8_t* pixelData, uint32_t pixelDataLength) argument
585 append(pixelData, pixelDataLength);
/external/deqp/modules/gles31/functional/
H A Des31fShaderImageLoadStoreTests.cpp1323 void *const pixelData = (deUint8*)data + y*rowPitch + x*pixelSize; local
1327 void *const channelData = (deUint8*)pixelData + c*pixelSize/imageNumChannels;
1503 void *const pixelData = (deUint8*)data + y*rowPitch + x*pixelSize; local
1505 deMemcpy(scratchAccess.getDataPtr(), pixelData, pixelSize);
1512 deMemcpy(pixelData, scratchAccess.getDataPtr(), pixelSize);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 479 milliseconds