OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bytesperpixel
(Results
126 - 150
of
171
) sorted by null
1
2
3
4
5
6
7
/external/skia/tests/
DrawBitmapRectTest.cpp
291
size_t count = bm.width() * bm.
bytesPerPixel
();
WritePixelsTest.cpp
145
SkPMColor* pixel = reinterpret_cast<SkPMColor*>(pixels + y * bmp.rowBytes() + x * bmp.
bytesPerPixel
());
/frameworks/base/core/jni/
android_view_TextureView.cpp
154
ssize_t bytesCount = buffer.stride *
bytesPerPixel
(buffer.format);
android_view_GraphicBuffer.cpp
190
ssize_t bytesCount = buffer->getStride() *
bytesPerPixel
(buffer->getPixelFormat());
android_view_Surface.cpp
236
ssize_t bpr = outBuffer.stride *
bytesPerPixel
(outBuffer.format);
android_view_SurfaceControl.cpp
165
ssize_t rowBytes = screenshot->getStride() * android::
bytesPerPixel
(screenshot->getFormat());
com_google_android_gles_jni_EGLImpl.cpp
294
pixmap.stride = nativeBitmap->rowBytes() / nativeBitmap->
bytesPerPixel
();
/frameworks/base/services/jni/
com_android_server_AssetAtlasService.cpp
203
glPixelStorei(GL_UNPACK_ALIGNMENT, bitmap->
bytesPerPixel
());
/external/chromium_org/ui/gfx/codec/
png_codec.cc
749
DCHECK_EQ(input.
bytesPerPixel
(), bbp);
767
DCHECK_EQ(input.
bytesPerPixel
(), bbp);
/frameworks/base/core/jni/android/graphics/
Bitmap.cpp
359
// done in native as there's no way to get
BytesPerPixel
in Java
747
const size_t size = bm0->width() * bm0->
bytesPerPixel
();
BitmapFactory.cpp
166
const int
bytesPerPixel
= SkBitmap::ComputeBytesPerPixel(
168
const int requestedSize =
bytesPerPixel
*
/external/qemu/distrib/sdl-1.2.15/src/video/
SDL_video.c
735
video->offset_x*mode->format->
BytesPerPixel
;
971
switch(vf->
BytesPerPixel
) {
[
all
...]
SDL_bmp.c
439
const int bw = surface->w*surface->format->
BytesPerPixel
;
/external/qemu/distrib/sdl-1.2.15/src/video/gapi/
SDL_gapivideo.c
1117
int
bytesPerPixel
= (gapi->gxProperties.cBPP + 1) / 8;
1121
unsigned char *srcPointer = ((unsigned char*) SDL_VideoSurface->pixels) + rects[i].y * SDL_VideoSurface->pitch + rects[i].x *
bytesPerPixel
;
1129
switch(
bytesPerPixel
)
[
all
...]
/frameworks/base/libs/hwui/
LayerRenderer.cpp
420
glPixelStorei(GL_PACK_ALIGNMENT, bitmap->
bytesPerPixel
());
/frameworks/base/services/input/
SpriteController.cpp
208
ssize_t bpr = outBuffer.stride *
bytesPerPixel
(outBuffer.format);
/external/chromium_org/content/browser/devtools/
renderer_overrides_handler.cc
530
bitmap.width() * bitmap.
bytesPerPixel
(),
538
bitmap.width() * bitmap.
bytesPerPixel
(),
[
all
...]
/external/chromium_org/content/browser/renderer_host/
render_message_filter.cc
[
all
...]
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_video.c
319
format->BitsPerPixel = format->
BytesPerPixel
= 0;
364
format->
BytesPerPixel
= DFB_BYTES_PER_PIXEL(pixelformat);
/external/chromium_org/ui/surface/
accelerated_surface_win.cc
534
bitmap->width() * bitmap->
bytesPerPixel
(),
[
all
...]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDSLoader.java
414
* @param scanlineSize Size of a single scanline = width *
bytesPerPixel
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
VideoDumpView.java
500
prop.setProperty("
bytesPerPixel
",
/frameworks/native/libs/gui/
Surface.cpp
686
const size_t bpp =
bytesPerPixel
(src->format);
SurfaceComposerClient.cpp
715
return mBuffer.stride * mBuffer.height *
bytesPerPixel
(mBuffer.format);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContext3DImagePacking.cpp
[
all
...]
Completed in 1413 milliseconds
1
2
3
4
5
6
7