3b748a44c6
When the Android runtime starts, the system preloads a series of assets in the Zygote process. These assets are shared across all processes. Unfortunately, each one of these assets is later uploaded in its own OpenGL texture, once per process. This wastes memory and generates unnecessary OpenGL state changes. This CL introduces an asset server that provides an atlas to all processes. Note: bitmaps used by skia shaders are *not* sampled from the atlas. It's an uncommon use case and would require extra texture transforms in the GL shaders. WHAT IS THE ASSETS ATLAS The "assets atlas" is a single, shareable graphic buffer that contains all the system's preloaded bitmap drawables (this includes 9-patches.) The atlas is made of two distinct objects: the graphic buffer that contains the actual pixels and the map which indicates where each preloaded bitmap can be found in the atlas (essentially a pair of x and y coordinates.) HOW IS THE ASSETS ATLAS GENERATED Because we need to support a wide variety of devices and because it is easy to change the list of preloaded drawables, the atlas is generated at runtime, during the startup phase of the system process. There are several steps that lead to the atlas generation: 1. If the device is booting for the first time, or if the device was updated, we need to find the best atlas configuration. To do so, the atlas service tries a number of width, height and algorithm variations that allows us to pack as many assets as possible while using as little memory as possible. Once a best configuration is found, it gets written to disk in /data/system/framework_atlas 2. Given a best configuration (algorithm variant, dimensions and number of bitmaps that can be packed in the atlas), the atlas service packs all the preloaded bitmaps into a single graphic buffer object. 3. The packing is done using Skia in a temporary native bitmap. The Skia bitmap is then copied into the graphic buffer using OpenGL ES to benefit from texture swizzling. HOW PROCESSES USE THE ATLAS Whenever a process' hardware renderer initializes its EGL context, it queries the atlas service for the graphic buffer and the map. It is important to remember that both the context and the map will be valid for the lifetime of the hardware renderer (if the system process goes down, all apps get killed as well.) Every time the hardware renderer needs to render a bitmap, it first checks whether the bitmap can be found in the assets atlas. When the bitmap is part of the atlas, texture coordinates are remapped appropriately before rendering. Change-Id: I8eaecf53e7f6a33d90da3d0047c5ceec89ea3af0
134 lines
3.7 KiB
C++
134 lines
3.7 KiB
C++
/*
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef ANDROID_HWUI_UV_MAPPER_H
|
|
#define ANDROID_HWUI_UV_MAPPER_H
|
|
|
|
#include "Rect.h"
|
|
|
|
namespace android {
|
|
namespace uirenderer {
|
|
|
|
/**
|
|
* This class can be used to map UV coordinates from the [0..1]
|
|
* range to other arbitrary ranges. All the methods below assume
|
|
* that the input values lie in the [0..1] range already.
|
|
*/
|
|
class UvMapper {
|
|
public:
|
|
/**
|
|
* Using this constructor is equivalent to not using any mapping at all.
|
|
* UV coordinates in the [0..1] range remain in the [0..1] range.
|
|
*/
|
|
UvMapper(): mIdentity(true), mMinU(0.0f), mMaxU(1.0f), mMinV(0.0f), mMaxV(1.0f) {
|
|
}
|
|
|
|
/**
|
|
* Creates a new mapper with the specified ranges for U and V coordinates.
|
|
* The parameter minU must be < maxU and minV must be < maxV.
|
|
*/
|
|
UvMapper(float minU, float maxU, float minV, float maxV):
|
|
mMinU(minU), mMaxU(maxU), mMinV(minV), mMaxV(maxV) {
|
|
checkIdentity();
|
|
}
|
|
|
|
/**
|
|
* Returns true if calling the map*() methods has no effect (that is,
|
|
* texture coordinates remain in the 0..1 range.)
|
|
*/
|
|
bool isIdentity() const {
|
|
return mIdentity;
|
|
}
|
|
|
|
/**
|
|
* Changes the U and V mapping ranges.
|
|
* The parameter minU must be < maxU and minV must be < maxV.
|
|
*/
|
|
void setMapping(float minU, float maxU, float minV, float maxV) {
|
|
mMinU = minU;
|
|
mMaxU = maxU;
|
|
mMinV = minV;
|
|
mMaxV = maxV;
|
|
checkIdentity();
|
|
}
|
|
|
|
/**
|
|
* Maps a single value in the U range.
|
|
*/
|
|
void mapU(float& u) const {
|
|
if (!mIdentity) u = lerp(mMinU, mMaxU, u);
|
|
}
|
|
|
|
/**
|
|
* Maps a single value in the V range.
|
|
*/
|
|
void mapV(float& v) const {
|
|
if (!mIdentity) v = lerp(mMinV, mMaxV, v);
|
|
}
|
|
|
|
/**
|
|
* Maps the specified rectangle in place. This method assumes:
|
|
* - left = min. U
|
|
* - top = min. V
|
|
* - right = max. U
|
|
* - bottom = max. V
|
|
*/
|
|
void map(Rect& texCoords) const {
|
|
if (!mIdentity) {
|
|
texCoords.left = lerp(mMinU, mMaxU, texCoords.left);
|
|
texCoords.right = lerp(mMinU, mMaxU, texCoords.right);
|
|
texCoords.top = lerp(mMinV, mMaxV, texCoords.top);
|
|
texCoords.bottom = lerp(mMinV, mMaxV, texCoords.bottom);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Maps the specified UV coordinates in place.
|
|
*/
|
|
void map(float& u1, float& v1, float& u2, float& v2) const {
|
|
if (!mIdentity) {
|
|
u1 = lerp(mMinU, mMaxU, u1);
|
|
u2 = lerp(mMinU, mMaxU, u2);
|
|
v1 = lerp(mMinV, mMaxV, v1);
|
|
v2 = lerp(mMinV, mMaxV, v2);
|
|
}
|
|
}
|
|
|
|
void dump() const {
|
|
ALOGD("mapper[minU=%.2f maxU=%.2f minV=%.2f maxV=%.2f]", mMinU, mMaxU, mMinV, mMaxV);
|
|
}
|
|
|
|
private:
|
|
static float lerp(float start, float stop, float amount) {
|
|
return start + (stop - start) * amount;
|
|
}
|
|
|
|
void checkIdentity() {
|
|
mIdentity = mMinU == 0.0f && mMaxU == 1.0f && mMinV == 0.0f && mMaxV == 1.0f;
|
|
}
|
|
|
|
bool mIdentity;
|
|
float mMinU;
|
|
float mMaxU;
|
|
float mMinV;
|
|
float mMaxV;
|
|
};
|
|
|
|
}; // namespace uirenderer
|
|
}; // namespace android
|
|
|
|
#endif // ANDROID_HWUI_UV_MAPPER_H
|