Home
last modified time | relevance | path

Searched refs:atlas (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/
DAssetAtlas.h69 return texture->blend ? &atlas.mBlendKey : &atlas.mOpaqueKey; in getMergeId()
85 const AssetAtlas& atlas; variable
88 const AssetAtlas& atlas) in Entry() argument
92 , atlas(atlas) { in Entry()
/frameworks/base/services/core/java/com/android/server/
DAssetAtlasService.java228 Atlas atlas = new Atlas(config.type, config.width, config.height, config.flags); in run() local
229 if (renderAtlas(mBuffer, atlas, config.count)) { in run()
248 private boolean renderAtlas(GraphicBuffer buffer, Atlas atlas, int packCount) { in renderAtlas() argument
272 if (atlas.pack(bitmap.getWidth(), bitmap.getHeight(), entry) != null) { in renderAtlas()
704 Atlas atlas = new Atlas(type, width, height); in packBitmaps() local
709 if (atlas.pack(bitmap.getWidth(), bitmap.getHeight(), entry) != null) { in packBitmaps()
/frameworks/base/core/java/android/view/
DThreadedRenderer.java938 IAssetAtlas atlas = IAssetAtlas.Stub.asInterface(binder); in initAssetAtlas()
940 if (atlas.isCompatible(android.os.Process.myPpid())) { in initAssetAtlas()
941 GraphicBuffer buffer = atlas.getBuffer(); in initAssetAtlas()
943 long[] map = atlas.getMap(); in initAssetAtlas()
950 if (atlas.getClass() != binder.getClass()) { in initAssetAtlas()
/frameworks/base/services/java/com/android/server/
DSystemServer.java660 AssetAtlasService atlas = null; in startOtherServices() local
1088 atlas = new AssetAtlasService(context); in startOtherServices()
1089 ServiceManager.addService(AssetAtlasService.ASSET_ATLAS_SERVICE, atlas); in startOtherServices()
1269 final AssetAtlasService atlasF = atlas; in startOtherServices()