/external/skia/tools/sk_app/win/ |
RasterWindowContext_win.cpp | 68 void* pixels = bmpInfo->bmiColors; local 72 fBackbufferSurface = SkSurface::MakeRasterDirect(info, pixels, sizeof(uint32_t) * w);
|
/external/skqp/gm/ |
imagemasksubset.cpp | 31 bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options&) 38 make_mask(SkSurface::MakeRasterDirect(surfaceInfo, pixels, rowBytes));
|
/external/skqp/src/android/ |
SkBitmapRegionCodec.cpp | 31 // If inputX is negative, we will need to place decoded pixels into the 34 // If inputY is negative, we will need to place decoded pixels into the 86 SkCodecPrintf("Error: Could not allocate pixels.\n"); 93 // pixels? 98 void* pixels = bitmap->getPixels(); local 100 memset(pixels, 0, bytes); 113 SkCodecPrintf("Error: Could not get pixels.\n");
|
/external/skqp/src/ports/ |
SkImageGeneratorCG.cpp | 104 bool SkImageGeneratorCG::onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, 130 SkPixmap dst(info, pixels, rowBytes);
|
/external/skqp/tools/sk_app/win/ |
RasterWindowContext_win.cpp | 68 void* pixels = bmpInfo->bmiColors; local 72 fBackbufferSurface = SkSurface::MakeRasterDirect(info, pixels, sizeof(uint32_t) * w);
|
/external/deqp/external/openglcts/modules/gl/ |
gl4cShaderBallotTests.cpp | 383 glw::GLfloat* pixels = new glw::GLfloat[size.x() * size.y() * 4]; local 392 pixels[mappedPixelPosition * 4 + 0] = -1.0f; 393 pixels[mappedPixelPosition * 4 + 1] = -1.0f; 394 pixels[mappedPixelPosition * 4 + 2] = -1.0f; 395 pixels[mappedPixelPosition * 4 + 3] = -1.0f; 399 // read pixels 400 gl.readPixels(0, 0, size.x(), size.y(), GL_RGBA, GL_FLOAT, pixels); 402 // validate pixels 410 tcu::Vec4 color(pixels[mappedPixelPosition * 4 + 0], pixels[mappedPixelPosition * 4 + 1] [all...] |
/external/mesa3d/src/mesa/main/ |
teximage.h | 229 GLenum format, GLenum type, const GLvoid *pixels, 265 GLenum format, GLenum type, const GLvoid *pixels ); 271 GLenum format, GLenum type, const GLvoid *pixels ); 277 GLenum format, GLenum type, const GLvoid *pixels ); 284 const GLvoid *pixels ); 293 const GLvoid *pixels ); 301 const GLvoid *pixels ); 309 const GLvoid *pixels ); 315 const GLvoid *pixels); 323 const GLvoid *pixels); [all...] |
drawpix.c | 47 GLenum format, GLenum type, const GLvoid *pixels ) 59 pixels, 122 "glDrawPixels(drawing color index pixels into RGB buffer)"); 150 1, format, type, INT_MAX, pixels)) { 164 &ctx->Unpack, pixels);
|
/external/skia/src/core/ |
SkBitmap.cpp | 89 fPixelRef = nullptr; // Free pixels. 134 fPixelRef = nullptr; // Free pixels. 156 const char* pix = (const char*)(fPixelRef ? fPixelRef->pixels() : nullptr); 183 // TODO(reed): Enforce that PixelRefs must have non-null pixels. 184 p = fPixelRef->pixels(); 269 static void invoke_release_proc(void (*proc)(void* pixels, void* ctx), void* pixels, void* ctx) { 271 proc(pixels, ctx); 275 bool SkBitmap::installPixels(const SkImageInfo& requestedInfo, void* pixels, size_t rb, 278 invoke_release_proc(releaseProc, pixels, context) [all...] |
/external/skqp/src/core/ |
SkBitmap.cpp | 89 fPixelRef = nullptr; // Free pixels. 134 fPixelRef = nullptr; // Free pixels. 156 const char* pix = (const char*)(fPixelRef ? fPixelRef->pixels() : nullptr); 183 // TODO(reed): Enforce that PixelRefs must have non-null pixels. 184 p = fPixelRef->pixels(); 269 static void invoke_release_proc(void (*proc)(void* pixels, void* ctx), void* pixels, void* ctx) { 271 proc(pixels, ctx); 275 bool SkBitmap::installPixels(const SkImageInfo& requestedInfo, void* pixels, size_t rb, 278 invoke_release_proc(releaseProc, pixels, context) [all...] |
/external/ImageMagick/coders/ |
pcx.c | 263 *pixels, 406 pixel_info=AcquireVirtualMemory(pcx_packets,2*sizeof(*pixels)); 416 pixels=(unsigned char *) GetVirtualMemoryBlob(pixel_info); 420 p=pixels; 500 p=pixels+(y*pcx_info.bytes_per_line*pcx_info.planes); 796 const unsigned char *pixels,Image *image) 812 q=pixels; 887 *pixels; 257 *pixels, local 878 *pixels; local [all...] |
pdf.c | 1277 *pixels; local [all...] |
/external/ImageMagick/MagickCore/ |
stream.c | 91 *pixels; 169 stream_info->pixels=(unsigned char *) MagickAssumeAligned( 170 AcquireAlignedMemory(1,sizeof(*stream_info->pixels))); 171 if (stream_info->pixels == (unsigned char *) NULL) 208 (void) RelinquishAlignedMemory(cache_info->pixels); 210 (void) UnmapBlob(cache_info->pixels,(size_t) cache_info->length); 211 cache_info->pixels=(Quantum *) NULL; 281 if (stream_info->pixels != (unsigned char *) NULL) 282 stream_info->pixels=(unsigned char *) RelinquishAlignedMemory( 283 stream_info->pixels); 89 *pixels; member in struct:_StreamInfo 365 *pixels; local [all...] |
/device/generic/goldfish-opengl/host/include/libOpenglRender/ |
IOStream.h | 86 void readbackPixels(void* context, int width, int height, unsigned int format, unsigned int type, void* pixels);
|
/external/deqp/modules/gles3/functional/ |
es3fMultiviewTests.cpp | 297 tcu::Surface pixels(backbufferWidth, backbufferHeight); 298 glu::readPixels(m_context.getRenderContext(), 0, 0, pixels.getAccess()); 304 tcu::RGBA pixel = pixels.getPixel(x, y); 330 log << TestLog::Image("Result image", "Result image", pixels);
|
/external/mesa3d/src/mesa/state_tracker/ |
st_pbo.h | 70 const void *pixels,
|
/external/skia/include/core/ |
SkPixelRef.h | 39 void* pixels() const { return fPixels; } function in class:SkPixelRef 42 /** Returns a non-zero, unique value corresponding to the pixels in this 43 pixelref. Each time the pixels are changed (and notifyPixelsChanged is 50 Unlike the generation ID, this ID remains the same even when the pixels 55 regardless of changes to its pixels or deletion of this object. 61 * Call this if you have changed the contents of the pixels. This will in- 68 contents of its pixels will not change for the lifetime of the pixelref. 73 pixels will not change for the lifetime of the pixelref. This state can 124 // Set true by caches when they cache content that's derived from the current pixels.
|
/external/skia/src/codec/ |
SkIcoCodec.h | 68 Result onStartIncrementalDecode(const SkImageInfo& dstInfo, void* pixels, size_t rowBytes,
|
/external/skia/src/effects/ |
SkBlurMask.h | 30 // but also being able to predict precisely at what pixels the blurred profile of e.g. a 74 @param pixels Location to store the resulting pixel data; allocated and managed by caller 76 @param width Size of the pixels array. 78 this implicitly gives the size of the pixels array. 81 static void ComputeBlurredScanline(uint8_t* pixels, const uint8_t* profile,
|
/external/skia/tests/ |
RectangleTextureTest.cpp | 94 GrColor pixels[kWidth * kHeight]; local 97 pixels[y * kWidth + x] = y * kWidth + x; 106 pixels); 126 refPixels[y * kWidth + x] = pixels[y0 * kWidth + x];
|
/external/skqp/include/core/ |
SkPixelRef.h | 39 void* pixels() const { return fPixels; } function in class:SkPixelRef 42 /** Returns a non-zero, unique value corresponding to the pixels in this 43 pixelref. Each time the pixels are changed (and notifyPixelsChanged is 50 Unlike the generation ID, this ID remains the same even when the pixels 55 regardless of changes to its pixels or deletion of this object. 61 * Call this if you have changed the contents of the pixels. This will in- 68 contents of its pixels will not change for the lifetime of the pixelref. 73 pixels will not change for the lifetime of the pixelref. This state can 124 // Set true by caches when they cache content that's derived from the current pixels.
|
/external/skqp/src/codec/ |
SkIcoCodec.h | 68 Result onStartIncrementalDecode(const SkImageInfo& dstInfo, void* pixels, size_t rowBytes,
|
/external/skqp/src/effects/ |
SkBlurMask.h | 30 // but also being able to predict precisely at what pixels the blurred profile of e.g. a 75 @param pixels Location to store the resulting pixel data; allocated and managed by caller 77 @param width Size of the pixels array. 79 this implicitly gives the size of the pixels array. 82 static void ComputeBlurredScanline(uint8_t* pixels, const uint8_t* profile,
|
/external/skqp/src/gpu/ddl/ |
GrDDLGpu.cpp | 59 GrBackendTexture GrDDLGpu::createTestingOnlyBackendTexture(void* pixels, int w, int h,
|
/external/skqp/tests/ |
RectangleTextureTest.cpp | 94 GrColor pixels[kWidth * kHeight]; local 97 pixels[y * kWidth + x] = y * kWidth + x; 106 pixels); 126 refPixels[y * kWidth + x] = pixels[y0 * kWidth + x];
|