HomeSort by relevance Sort by last modified time
    Searched refs:layerHeight (Results 1 - 5 of 5) sorted by null

  /frameworks/base/libs/hwui/
LayerCache.h 99 LayerEntry(const uint32_t layerWidth, const uint32_t layerHeight): mLayer(NULL) {
101 mHeight = Layer::computeIdealHeight(layerHeight);
Layer.cpp 31 Layer::Layer(const uint32_t layerWidth, const uint32_t layerHeight) {
40 texture.height = layerHeight;
67 uint32_t Layer::computeIdealHeight(uint32_t layerHeight) {
68 return uint32_t(ceilf(layerHeight / float(LAYER_SIZE)) * LAYER_SIZE);
Layer.h 52 Layer(const uint32_t layerWidth, const uint32_t layerHeight);
56 static uint32_t computeIdealHeight(uint32_t layerHeight);
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp 794 Length layerHeight = fillLayer->size().size.height();
801 if (layerHeight.isFixed())
802 h = layerHeight.value();
803 else if (layerHeight.isPercent())
804 h = layerHeight.calcValue(positioningAreaSize.height());
808 if (layerWidth.isAuto() && !layerHeight.isAuto()) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 616 float layerHeight = ceilf(rect.height() + doubleLineWidth);
618 CGLayerRef layer = CGLayerCreateWithContext(context, CGSizeMake(layerWidth, layerHeight), 0);
    [all...]

Completed in 494 milliseconds