Home
last modified time | relevance | path

Searched refs:bpr (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/libs/input/
DSpriteIcon.cpp38 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format); in draw() local
40 outBuffer.bits, bpr); in draw()
/frameworks/native/opengl/libagl/
Dtexture.cpp368 const int32_t bpr = ((width * pixelFormat.size) + align) & ~align; in createTextureSurface() local
369 const size_t size = bpr * height; in createTextureSurface()
370 const int32_t stride = bpr / pixelFormat.size; in createTextureSurface()
376 width, height, stride, formatIdx, compressedFormat, bpr); in createTextureSurface()
387 width, height, stride, formatIdx, compressedFormat, bpr); in createTextureSurface()
1190 const int32_t bpr = ((width * pixelFormat.size) + align) & ~align; in glTexImage2D() local
1191 const int32_t stride = bpr / pixelFormat.size; in glTexImage2D()
1273 const int32_t bpr = ((width * pixelFormat.size) + align) & ~align; in glTexSubImage2D() local
1274 const int32_t stride = bpr / pixelFormat.size; in glTexSubImage2D()
1510 const int32_t bpr = ((width * pixelFormat.size) + align) & ~align; in glReadPixels() local
[all …]
DTextureObjectManager.h56 int format, int compressedFormat, int bpr);
DTextureObjectManager.cpp162 int format, int compressedFormat, int bpr) in reallocate() argument
164 const size_t size = h * bpr; in reallocate()
Dmipmap.cpp46 const int bpr = w * pixelFormat.size; in buildAPyramid() local
48 base->format, base->compressedFormat, bpr) != NO_ERROR) { in buildAPyramid()
/frameworks/base/core/jni/
Dandroid_view_Surface.cpp264 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format); in nativeLockCanvas() local
265 bitmap.setInfo(info, bpr); in nativeLockCanvas()