Searched refs:bpr (Results 1 – 6 of 6) sorted by relevance
/frameworks/native/opengl/libagl/ |
D | texture.cpp | 372 const int32_t bpr = ((width * pixelFormat.size) + align) & ~align; in createTextureSurface() local 373 const size_t size = bpr * height; in createTextureSurface() 374 const int32_t stride = bpr / pixelFormat.size; in createTextureSurface() 380 width, height, stride, formatIdx, compressedFormat, bpr); in createTextureSurface() 391 width, height, stride, formatIdx, compressedFormat, bpr); in createTextureSurface() 1194 const int32_t bpr = ((width * pixelFormat.size) + align) & ~align; in glTexImage2D() local 1195 const size_t size = bpr * height; in glTexImage2D() 1196 const int32_t stride = bpr / pixelFormat.size; in glTexImage2D() 1278 const int32_t bpr = ((width * pixelFormat.size) + align) & ~align; in glTexSubImage2D() local 1279 const size_t size = bpr * height; in glTexSubImage2D() [all …]
|
D | TextureObjectManager.h | 56 int format, int compressedFormat, int bpr);
|
D | mipmap.cpp | 46 const int bpr = w * pixelFormat.size; in buildAPyramid() local 48 base->format, base->compressedFormat, bpr) != NO_ERROR) { in buildAPyramid()
|
D | TextureObjectManager.cpp | 162 int format, int compressedFormat, int bpr) in reallocate() argument 164 const size_t size = h * bpr; in reallocate()
|
/frameworks/base/libs/input/ |
D | SpriteController.cpp | 212 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format); in doUpdateSprites() local 214 outBuffer.bits, bpr); in doUpdateSprites()
|
/frameworks/base/core/jni/ |
D | android_view_Surface.cpp | 328 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format); in nativeLockCanvas() local 329 bitmap.setInfo(info, bpr); in nativeLockCanvas()
|