2012-11-19 09:58:37 -08:00
|
|
|
/*
|
2013-08-14 12:26:44 -07:00
|
|
|
* Copyright (c) 2012, 2013 The Linux Foundation. All rights reserved.
|
2012-11-19 09:58:37 -08:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <android/log.h>
|
2013-05-07 20:58:22 -07:00
|
|
|
#include <string.h>
|
2012-11-19 09:58:37 -08:00
|
|
|
|
2013-05-07 20:58:22 -07:00
|
|
|
#include "libdisplay/GonkDisplay.h"
|
2012-11-19 09:58:37 -08:00
|
|
|
#include "Framebuffer.h"
|
2014-02-24 20:23:41 -08:00
|
|
|
#include "GLContext.h" // for GLContext
|
2013-08-29 08:17:59 -07:00
|
|
|
#include "HwcUtils.h"
|
2012-11-19 09:58:37 -08:00
|
|
|
#include "HwcComposer2D.h"
|
2013-06-05 15:14:51 -07:00
|
|
|
#include "mozilla/layers/LayerManagerComposite.h"
|
2013-04-24 11:42:40 -07:00
|
|
|
#include "mozilla/layers/PLayerTransaction.h"
|
2012-11-19 09:58:37 -08:00
|
|
|
#include "mozilla/layers/ShadowLayerUtilsGralloc.h"
|
2014-02-24 20:23:41 -08:00
|
|
|
#include "mozilla/layers/TextureHostOGL.h" // for TextureHostOGL
|
2012-11-19 09:58:37 -08:00
|
|
|
#include "mozilla/StaticPtr.h"
|
2013-01-09 04:56:37 -08:00
|
|
|
#include "cutils/properties.h"
|
2014-01-15 23:22:19 -08:00
|
|
|
#include "gfx2DGlue.h"
|
2012-11-19 09:58:37 -08:00
|
|
|
|
2014-02-21 05:30:20 -08:00
|
|
|
#if ANDROID_VERSION >= 17
|
2013-09-11 06:10:33 -07:00
|
|
|
#include "libdisplay/FramebufferSurface.h"
|
2014-01-16 09:47:35 -08:00
|
|
|
#ifndef HWC_BLIT
|
|
|
|
#define HWC_BLIT (HWC_FRAMEBUFFER_TARGET + 1)
|
|
|
|
#endif
|
2013-09-11 06:10:33 -07:00
|
|
|
#endif
|
|
|
|
|
2014-03-04 00:45:50 -08:00
|
|
|
#ifdef LOG_TAG
|
|
|
|
#undef LOG_TAG
|
|
|
|
#endif
|
2012-11-19 09:58:37 -08:00
|
|
|
#define LOG_TAG "HWComposer"
|
|
|
|
|
2013-09-17 19:10:35 -07:00
|
|
|
/*
|
|
|
|
* By default the debug message of hwcomposer (LOG_DEBUG level) are undefined,
|
|
|
|
* but can be enabled by uncommenting HWC_DEBUG below.
|
|
|
|
*/
|
|
|
|
//#define HWC_DEBUG
|
|
|
|
|
|
|
|
#ifdef HWC_DEBUG
|
2012-11-19 09:58:37 -08:00
|
|
|
#define LOGD(args...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, ## args)
|
|
|
|
#else
|
|
|
|
#define LOGD(args...) ((void)0)
|
|
|
|
#endif
|
|
|
|
|
2013-09-17 19:10:35 -07:00
|
|
|
#define LOGI(args...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, ## args)
|
2012-11-19 09:58:37 -08:00
|
|
|
#define LOGE(args...) __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, ## args)
|
|
|
|
|
|
|
|
#define LAYER_COUNT_INCREMENTS 5
|
|
|
|
|
|
|
|
using namespace android;
|
|
|
|
using namespace mozilla::layers;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
static StaticRefPtr<HwcComposer2D> sInstance;
|
|
|
|
|
|
|
|
HwcComposer2D::HwcComposer2D()
|
2014-03-04 00:45:51 -08:00
|
|
|
: mHwc(nullptr)
|
2012-11-19 09:58:37 -08:00
|
|
|
, mList(nullptr)
|
2014-03-04 00:45:51 -08:00
|
|
|
, mMaxLayerCount(0)
|
2013-09-27 13:37:19 -07:00
|
|
|
, mColorFill(false)
|
|
|
|
, mRBSwapSupport(false)
|
2014-02-27 13:26:22 -08:00
|
|
|
#if ANDROID_VERSION >= 17
|
2014-02-24 20:23:41 -08:00
|
|
|
, mPrevRetireFence(Fence::NO_FENCE)
|
|
|
|
, mPrevDisplayFence(Fence::NO_FENCE)
|
|
|
|
#endif
|
2013-12-11 12:37:25 -08:00
|
|
|
, mPrepared(false)
|
2012-11-19 09:58:37 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
HwcComposer2D::~HwcComposer2D() {
|
|
|
|
free(mList);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
HwcComposer2D::Init(hwc_display_t dpy, hwc_surface_t sur)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!Initialized());
|
|
|
|
|
2013-09-11 06:10:33 -07:00
|
|
|
mHwc = (HwcDevice*)GetGonkDisplay()->GetHWCDevice();
|
2013-05-07 20:58:22 -07:00
|
|
|
if (!mHwc) {
|
2012-11-19 09:58:37 -08:00
|
|
|
LOGE("Failed to initialize hwc");
|
2013-05-07 20:58:22 -07:00
|
|
|
return -1;
|
2012-11-19 09:58:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIntSize screenSize;
|
|
|
|
|
|
|
|
mozilla::Framebuffer::GetSize(&screenSize);
|
2013-01-17 13:34:01 -08:00
|
|
|
mScreenRect = nsIntRect(nsIntPoint(0, 0), screenSize);
|
2012-11-19 09:58:37 -08:00
|
|
|
|
2014-02-21 05:30:20 -08:00
|
|
|
#if ANDROID_VERSION >= 17
|
2013-09-27 13:37:19 -07:00
|
|
|
int supported = 0;
|
2014-02-27 08:38:36 -08:00
|
|
|
|
|
|
|
if (mHwc->query) {
|
|
|
|
if (mHwc->query(mHwc, HwcUtils::HWC_COLOR_FILL, &supported) == NO_ERROR) {
|
|
|
|
mColorFill = !!supported;
|
|
|
|
}
|
|
|
|
if (mHwc->query(mHwc, HwcUtils::HWC_FORMAT_RB_SWAP, &supported) == NO_ERROR) {
|
|
|
|
mRBSwapSupport = !!supported;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mColorFill = false;
|
|
|
|
mRBSwapSupport = false;
|
2013-09-27 13:37:19 -07:00
|
|
|
}
|
|
|
|
#else
|
2013-01-09 04:56:37 -08:00
|
|
|
char propValue[PROPERTY_VALUE_MAX];
|
|
|
|
property_get("ro.display.colorfill", propValue, "0");
|
|
|
|
mColorFill = (atoi(propValue) == 1) ? true : false;
|
2013-09-27 13:37:19 -07:00
|
|
|
mRBSwapSupport = true;
|
|
|
|
#endif
|
2013-01-09 04:56:37 -08:00
|
|
|
|
2012-11-19 09:58:37 -08:00
|
|
|
mDpy = dpy;
|
|
|
|
mSur = sur;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
HwcComposer2D*
|
|
|
|
HwcComposer2D::GetInstance()
|
|
|
|
{
|
|
|
|
if (!sInstance) {
|
2013-09-17 19:10:35 -07:00
|
|
|
LOGI("Creating new instance");
|
2012-11-19 09:58:37 -08:00
|
|
|
sInstance = new HwcComposer2D();
|
|
|
|
}
|
|
|
|
return sInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
HwcComposer2D::ReallocLayerList()
|
|
|
|
{
|
2013-09-11 06:10:33 -07:00
|
|
|
int size = sizeof(HwcList) +
|
|
|
|
((mMaxLayerCount + LAYER_COUNT_INCREMENTS) * sizeof(HwcLayer));
|
2012-11-19 09:58:37 -08:00
|
|
|
|
2013-09-11 06:10:33 -07:00
|
|
|
HwcList* listrealloc = (HwcList*)realloc(mList, size);
|
2012-11-19 09:58:37 -08:00
|
|
|
|
|
|
|
if (!listrealloc) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mList) {
|
|
|
|
//first alloc, initialize
|
|
|
|
listrealloc->numHwLayers = 0;
|
|
|
|
listrealloc->flags = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
mList = listrealloc;
|
|
|
|
mMaxLayerCount += LAYER_COUNT_INCREMENTS;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-05 14:55:00 -08:00
|
|
|
void
|
|
|
|
HwcComposer2D::setCrop(HwcLayer* layer, hwc_rect_t srcCrop)
|
|
|
|
{
|
|
|
|
#if ANDROID_VERSION >= 19
|
|
|
|
if (mHwc->common.version >= HWC_DEVICE_API_VERSION_1_3) {
|
|
|
|
layer->sourceCropf.left = srcCrop.left;
|
|
|
|
layer->sourceCropf.top = srcCrop.top;
|
|
|
|
layer->sourceCropf.right = srcCrop.right;
|
|
|
|
layer->sourceCropf.bottom = srcCrop.bottom;
|
|
|
|
} else {
|
|
|
|
layer->sourceCrop = srcCrop;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
layer->sourceCrop = srcCrop;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-04-03 18:59:13 -07:00
|
|
|
void
|
|
|
|
HwcComposer2D::setHwcGeometry(bool aGeometryChanged)
|
|
|
|
{
|
|
|
|
#if ANDROID_VERSION >= 19
|
|
|
|
mList->flags = aGeometryChanged ? HWC_GEOMETRY_CHANGED : 0;
|
|
|
|
#else
|
|
|
|
mList->flags = HWC_GEOMETRY_CHANGED;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-11-19 09:58:37 -08:00
|
|
|
bool
|
|
|
|
HwcComposer2D::PrepareLayerList(Layer* aLayer,
|
2013-01-17 13:34:01 -08:00
|
|
|
const nsIntRect& aClip,
|
|
|
|
const gfxMatrix& aParentTransform,
|
|
|
|
const gfxMatrix& aGLWorldTransform)
|
2012-11-19 09:58:37 -08:00
|
|
|
{
|
|
|
|
// NB: we fall off this path whenever there are container layers
|
|
|
|
// that require intermediate surfaces. That means all the
|
|
|
|
// GetEffective*() coordinates are relative to the framebuffer.
|
|
|
|
|
2013-01-09 04:56:37 -08:00
|
|
|
bool fillColor = false;
|
2012-11-19 09:58:37 -08:00
|
|
|
|
|
|
|
const nsIntRegion& visibleRegion = aLayer->GetEffectiveVisibleRegion();
|
|
|
|
if (visibleRegion.IsEmpty()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-15 15:37:13 -07:00
|
|
|
uint8_t opacity = std::min(0xFF, (int)(aLayer->GetEffectiveOpacity() * 256.0));
|
|
|
|
#if ANDROID_VERSION < 18
|
|
|
|
if (opacity < 0xFF) {
|
2013-06-11 03:14:33 -07:00
|
|
|
LOGD("%s Layer has planar semitransparency which is unsupported", aLayer->Name());
|
2012-11-19 09:58:37 -08:00
|
|
|
return false;
|
|
|
|
}
|
2013-10-15 15:37:13 -07:00
|
|
|
#endif
|
2012-11-19 09:58:37 -08:00
|
|
|
|
2013-01-17 13:34:01 -08:00
|
|
|
nsIntRect clip;
|
2013-08-29 08:17:59 -07:00
|
|
|
if (!HwcUtils::CalculateClipRect(aParentTransform * aGLWorldTransform,
|
|
|
|
aLayer->GetEffectiveClipRect(),
|
|
|
|
aClip,
|
|
|
|
&clip))
|
2013-01-17 13:34:01 -08:00
|
|
|
{
|
2013-06-11 03:14:33 -07:00
|
|
|
LOGD("%s Clip rect is empty. Skip layer", aLayer->Name());
|
2013-01-17 13:34:01 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-08-14 12:26:44 -07:00
|
|
|
// HWC supports only the following 2D transformations:
|
|
|
|
//
|
2013-09-11 06:10:33 -07:00
|
|
|
// Scaling via the sourceCrop and displayFrame in HwcLayer
|
|
|
|
// Translation via the sourceCrop and displayFrame in HwcLayer
|
2013-08-14 12:26:44 -07:00
|
|
|
// Rotation (in square angles only) via the HWC_TRANSFORM_ROT_* flags
|
|
|
|
// Reflection (horizontal and vertical) via the HWC_TRANSFORM_FLIP_* flags
|
|
|
|
//
|
|
|
|
// A 2D transform with PreservesAxisAlignedRectangles() has all the attributes
|
|
|
|
// above
|
2013-01-17 13:34:01 -08:00
|
|
|
gfxMatrix transform;
|
2014-01-24 17:49:19 -08:00
|
|
|
gfx3DMatrix transform3D;
|
|
|
|
gfx::To3DMatrix(aLayer->GetEffectiveTransform(), transform3D);
|
|
|
|
|
2013-01-17 13:34:01 -08:00
|
|
|
if (!transform3D.Is2D(&transform) || !transform.PreservesAxisAlignedRectangles()) {
|
|
|
|
LOGD("Layer has a 3D transform or a non-square angle rotation");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-19 09:58:37 -08:00
|
|
|
|
|
|
|
if (ContainerLayer* container = aLayer->AsContainerLayer()) {
|
2014-05-05 13:26:51 -07:00
|
|
|
if (container->UseIntermediateSurface()) {
|
|
|
|
LOGD("Container layer needs intermediate surface");
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-19 09:58:37 -08:00
|
|
|
nsAutoTArray<Layer*, 12> children;
|
|
|
|
container->SortChildrenBy3DZOrder(children);
|
|
|
|
|
2013-01-07 15:21:50 -08:00
|
|
|
for (uint32_t i = 0; i < children.Length(); i++) {
|
2013-01-17 13:34:01 -08:00
|
|
|
if (!PrepareLayerList(children[i], clip, transform, aGLWorldTransform)) {
|
2012-11-19 09:58:37 -08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-06-05 15:14:51 -07:00
|
|
|
LayerRenderState state = aLayer->GetRenderState();
|
2013-04-29 17:21:16 -07:00
|
|
|
nsIntSize surfaceSize;
|
2012-11-19 09:58:37 -08:00
|
|
|
|
2013-06-05 15:14:51 -07:00
|
|
|
if (state.mSurface.get()) {
|
|
|
|
surfaceSize = state.mSize;
|
|
|
|
} else {
|
2013-01-09 04:56:37 -08:00
|
|
|
if (aLayer->AsColorLayer() && mColorFill) {
|
|
|
|
fillColor = true;
|
|
|
|
} else {
|
2013-06-11 03:14:33 -07:00
|
|
|
LOGD("%s Layer doesn't have a gralloc buffer", aLayer->Name());
|
2013-01-09 04:56:37 -08:00
|
|
|
return false;
|
|
|
|
}
|
2012-11-19 09:58:37 -08:00
|
|
|
}
|
2013-08-14 12:26:44 -07:00
|
|
|
// Buffer rotation is not to be confused with the angled rotation done by a transform matrix
|
|
|
|
// It's a fancy ThebesLayer feature used for scrolling
|
2012-11-19 09:58:37 -08:00
|
|
|
if (state.BufferRotated()) {
|
2013-06-11 03:14:33 -07:00
|
|
|
LOGD("%s Layer has a rotated buffer", aLayer->Name());
|
2012-11-19 09:58:37 -08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIntRect visibleRect = visibleRegion.GetBounds();
|
|
|
|
|
2013-01-09 04:56:37 -08:00
|
|
|
nsIntRect bufferRect;
|
|
|
|
if (fillColor) {
|
2013-01-10 02:51:43 -08:00
|
|
|
bufferRect = nsIntRect(visibleRect);
|
2013-01-09 04:56:37 -08:00
|
|
|
} else {
|
2013-01-10 02:51:43 -08:00
|
|
|
if(state.mHasOwnOffset) {
|
|
|
|
bufferRect = nsIntRect(state.mOffset.x, state.mOffset.y,
|
2013-06-05 15:14:51 -07:00
|
|
|
state.mSize.width, state.mSize.height);
|
2013-01-10 02:51:43 -08:00
|
|
|
} else {
|
2013-06-27 19:22:37 -07:00
|
|
|
//Since the buffer doesn't have its own offset, assign the whole
|
|
|
|
//surface size as its buffer bounds
|
|
|
|
bufferRect = nsIntRect(0, 0, state.mSize.width, state.mSize.height);
|
2013-01-10 02:51:43 -08:00
|
|
|
}
|
2013-01-09 04:56:37 -08:00
|
|
|
}
|
2012-11-19 09:58:37 -08:00
|
|
|
|
2014-03-17 11:51:26 -07:00
|
|
|
hwc_rect_t sourceCrop, displayFrame;
|
2013-08-29 08:17:59 -07:00
|
|
|
if(!HwcUtils::PrepareLayerRects(visibleRect,
|
2013-01-17 13:34:01 -08:00
|
|
|
transform * aGLWorldTransform,
|
|
|
|
clip,
|
|
|
|
bufferRect,
|
2014-02-22 04:56:02 -08:00
|
|
|
state.YFlipped(),
|
2014-02-05 14:55:00 -08:00
|
|
|
&(sourceCrop),
|
2014-03-17 11:51:26 -07:00
|
|
|
&(displayFrame)))
|
2013-01-17 13:34:01 -08:00
|
|
|
{
|
2012-11-19 09:58:37 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-17 11:51:26 -07:00
|
|
|
// OK! We can compose this layer with hwc.
|
|
|
|
int current = mList ? mList->numHwLayers : 0;
|
|
|
|
|
|
|
|
// Do not compose any layer below full-screen Opaque layer
|
|
|
|
// Note: It can be generalized to non-fullscreen Opaque layers.
|
|
|
|
bool isOpaque = (opacity == 0xFF) && (aLayer->GetContentFlags() & Layer::CONTENT_OPAQUE);
|
|
|
|
if (current && isOpaque) {
|
|
|
|
nsIntRect displayRect = nsIntRect(displayFrame.left, displayFrame.top,
|
|
|
|
displayFrame.right - displayFrame.left, displayFrame.bottom - displayFrame.top);
|
|
|
|
if (displayRect.Contains(mScreenRect)) {
|
|
|
|
// In z-order, all previous layers are below
|
|
|
|
// the current layer. We can ignore them now.
|
|
|
|
mList->numHwLayers = current = 0;
|
|
|
|
mHwcLayerMap.Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mList || current >= mMaxLayerCount) {
|
|
|
|
if (!ReallocLayerList() || current >= mMaxLayerCount) {
|
|
|
|
LOGE("PrepareLayerList failed! Could not increase the maximum layer count");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HwcLayer& hwcLayer = mList->hwLayers[current];
|
|
|
|
hwcLayer.displayFrame = displayFrame;
|
2014-02-05 14:55:00 -08:00
|
|
|
setCrop(&hwcLayer, sourceCrop);
|
2013-06-05 15:14:51 -07:00
|
|
|
buffer_handle_t handle = fillColor ? nullptr : state.mSurface->getNativeBuffer()->handle;
|
2012-11-19 09:58:37 -08:00
|
|
|
hwcLayer.handle = handle;
|
|
|
|
|
2014-06-04 14:27:21 -07:00
|
|
|
hwcLayer.flags = 0;
|
2012-11-19 09:58:37 -08:00
|
|
|
hwcLayer.hints = 0;
|
2014-03-17 11:51:26 -07:00
|
|
|
hwcLayer.blending = isOpaque ? HWC_BLENDING_NONE : HWC_BLENDING_PREMULT;
|
2014-02-21 05:30:20 -08:00
|
|
|
#if ANDROID_VERSION >= 17
|
2013-09-11 06:10:33 -07:00
|
|
|
hwcLayer.compositionType = HWC_FRAMEBUFFER;
|
|
|
|
|
|
|
|
hwcLayer.acquireFenceFd = -1;
|
|
|
|
hwcLayer.releaseFenceFd = -1;
|
2014-02-21 05:30:20 -08:00
|
|
|
#if ANDROID_VERSION >= 18
|
2013-10-15 15:37:13 -07:00
|
|
|
hwcLayer.planeAlpha = opacity;
|
2014-02-21 05:30:20 -08:00
|
|
|
#endif
|
2013-09-11 06:10:33 -07:00
|
|
|
#else
|
2013-08-29 08:17:59 -07:00
|
|
|
hwcLayer.compositionType = HwcUtils::HWC_USE_COPYBIT;
|
2013-09-11 06:10:33 -07:00
|
|
|
#endif
|
2012-11-19 09:58:37 -08:00
|
|
|
|
2013-01-09 04:56:37 -08:00
|
|
|
if (!fillColor) {
|
2013-06-11 03:14:33 -07:00
|
|
|
if (state.FormatRBSwapped()) {
|
2013-09-27 13:37:19 -07:00
|
|
|
if (!mRBSwapSupport) {
|
|
|
|
LOGD("No R/B swap support in H/W Composer");
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-29 08:17:59 -07:00
|
|
|
hwcLayer.flags |= HwcUtils::HWC_FORMAT_RB_SWAP;
|
2013-06-11 03:14:33 -07:00
|
|
|
}
|
|
|
|
|
2013-08-14 12:26:44 -07:00
|
|
|
// Translation and scaling have been addressed in PrepareLayerRects().
|
|
|
|
// Given the above and that we checked for PreservesAxisAlignedRectangles()
|
|
|
|
// the only possible transformations left to address are
|
|
|
|
// square angle rotation and horizontal/vertical reflection.
|
|
|
|
//
|
|
|
|
// The rotation and reflection permutations total 16 but can be
|
|
|
|
// reduced to 8 transformations after eliminating redundancies.
|
|
|
|
//
|
|
|
|
// All matrices represented here are in the form
|
|
|
|
//
|
|
|
|
// | xx xy |
|
|
|
|
// | yx yy |
|
|
|
|
//
|
|
|
|
// And ignore scaling.
|
|
|
|
//
|
|
|
|
// Reflection is applied before rotation
|
2013-01-29 17:21:04 -08:00
|
|
|
gfxMatrix rotation = transform * aGLWorldTransform;
|
2013-08-14 12:26:44 -07:00
|
|
|
// Compute fuzzy zero like PreservesAxisAlignedRectangles()
|
2013-01-29 17:21:04 -08:00
|
|
|
if (fabs(rotation.xx) < 1e-6) {
|
|
|
|
if (rotation.xy < 0) {
|
2013-08-14 12:26:44 -07:00
|
|
|
if (rotation.yx > 0) {
|
|
|
|
// 90 degree rotation
|
|
|
|
//
|
|
|
|
// | 0 -1 |
|
|
|
|
// | 1 0 |
|
|
|
|
//
|
|
|
|
hwcLayer.transform = HWC_TRANSFORM_ROT_90;
|
|
|
|
LOGD("Layer rotated 90 degrees");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Horizontal reflection then 90 degree rotation
|
|
|
|
//
|
|
|
|
// | 0 -1 | | -1 0 | = | 0 -1 |
|
|
|
|
// | 1 0 | | 0 1 | | -1 0 |
|
|
|
|
//
|
|
|
|
// same as vertical reflection then 270 degree rotation
|
|
|
|
//
|
|
|
|
// | 0 1 | | 1 0 | = | 0 -1 |
|
|
|
|
// | -1 0 | | 0 -1 | | -1 0 |
|
|
|
|
//
|
|
|
|
hwcLayer.transform = HWC_TRANSFORM_ROT_90 | HWC_TRANSFORM_FLIP_H;
|
|
|
|
LOGD("Layer vertically reflected then rotated 270 degrees");
|
|
|
|
}
|
2013-01-09 04:56:37 -08:00
|
|
|
} else {
|
2013-08-14 12:26:44 -07:00
|
|
|
if (rotation.yx < 0) {
|
|
|
|
// 270 degree rotation
|
|
|
|
//
|
|
|
|
// | 0 1 |
|
|
|
|
// | -1 0 |
|
|
|
|
//
|
|
|
|
hwcLayer.transform = HWC_TRANSFORM_ROT_270;
|
|
|
|
LOGD("Layer rotated 270 degrees");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Vertical reflection then 90 degree rotation
|
|
|
|
//
|
|
|
|
// | 0 1 | | -1 0 | = | 0 1 |
|
|
|
|
// | -1 0 | | 0 1 | | 1 0 |
|
|
|
|
//
|
|
|
|
// Same as horizontal reflection then 270 degree rotation
|
|
|
|
//
|
|
|
|
// | 0 -1 | | 1 0 | = | 0 1 |
|
|
|
|
// | 1 0 | | 0 -1 | | 1 0 |
|
|
|
|
//
|
|
|
|
hwcLayer.transform = HWC_TRANSFORM_ROT_90 | HWC_TRANSFORM_FLIP_V;
|
|
|
|
LOGD("Layer horizontally reflected then rotated 270 degrees");
|
|
|
|
}
|
2013-01-09 04:56:37 -08:00
|
|
|
}
|
2013-01-29 17:21:04 -08:00
|
|
|
} else if (rotation.xx < 0) {
|
2013-08-14 12:26:44 -07:00
|
|
|
if (rotation.yy > 0) {
|
|
|
|
// Horizontal reflection
|
|
|
|
//
|
|
|
|
// | -1 0 |
|
|
|
|
// | 0 1 |
|
|
|
|
//
|
|
|
|
hwcLayer.transform = HWC_TRANSFORM_FLIP_H;
|
|
|
|
LOGD("Layer rotated 180 degrees");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// 180 degree rotation
|
|
|
|
//
|
|
|
|
// | -1 0 |
|
|
|
|
// | 0 -1 |
|
|
|
|
//
|
|
|
|
// Same as horizontal and vertical reflection
|
|
|
|
//
|
|
|
|
// | -1 0 | | 1 0 | = | -1 0 |
|
|
|
|
// | 0 1 | | 0 -1 | | 0 -1 |
|
|
|
|
//
|
|
|
|
hwcLayer.transform = HWC_TRANSFORM_ROT_180;
|
|
|
|
LOGD("Layer rotated 180 degrees");
|
|
|
|
}
|
2013-01-09 04:56:37 -08:00
|
|
|
} else {
|
2013-08-14 12:26:44 -07:00
|
|
|
if (rotation.yy < 0) {
|
|
|
|
// Vertical reflection
|
|
|
|
//
|
|
|
|
// | 1 0 |
|
|
|
|
// | 0 -1 |
|
|
|
|
//
|
|
|
|
hwcLayer.transform = HWC_TRANSFORM_FLIP_V;
|
|
|
|
LOGD("Layer rotated 180 degrees");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// No rotation or reflection
|
|
|
|
//
|
|
|
|
// | 1 0 |
|
|
|
|
// | 0 1 |
|
|
|
|
//
|
|
|
|
hwcLayer.transform = 0;
|
|
|
|
}
|
2012-11-19 09:58:37 -08:00
|
|
|
}
|
|
|
|
|
2013-08-14 12:26:44 -07:00
|
|
|
if (state.YFlipped()) {
|
|
|
|
// Invert vertical reflection flag if it was already set
|
|
|
|
hwcLayer.transform ^= HWC_TRANSFORM_FLIP_V;
|
|
|
|
}
|
2013-01-09 04:56:37 -08:00
|
|
|
hwc_region_t region;
|
2013-04-29 17:21:54 -07:00
|
|
|
if (visibleRegion.GetNumRects() > 1) {
|
2013-08-29 08:17:59 -07:00
|
|
|
mVisibleRegions.push_back(HwcUtils::RectVector());
|
|
|
|
HwcUtils::RectVector* visibleRects = &(mVisibleRegions.back());
|
|
|
|
if(!HwcUtils::PrepareVisibleRegion(visibleRegion,
|
2013-04-29 17:21:54 -07:00
|
|
|
transform * aGLWorldTransform,
|
|
|
|
clip,
|
|
|
|
bufferRect,
|
|
|
|
visibleRects)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
region.numRects = visibleRects->size();
|
|
|
|
region.rects = &((*visibleRects)[0]);
|
|
|
|
} else {
|
|
|
|
region.numRects = 1;
|
|
|
|
region.rects = &(hwcLayer.displayFrame);
|
|
|
|
}
|
2013-01-09 04:56:37 -08:00
|
|
|
hwcLayer.visibleRegionScreen = region;
|
|
|
|
} else {
|
2013-08-29 08:17:59 -07:00
|
|
|
hwcLayer.flags |= HwcUtils::HWC_COLOR_FILL;
|
2013-04-29 17:20:51 -07:00
|
|
|
ColorLayer* colorLayer = aLayer->AsColorLayer();
|
|
|
|
if (colorLayer->GetColor().a < 1.0) {
|
|
|
|
LOGD("Color layer has semitransparency which is unsupported");
|
|
|
|
return false;
|
|
|
|
}
|
2013-01-09 04:56:37 -08:00
|
|
|
hwcLayer.transform = colorLayer->GetColor().Packed();
|
|
|
|
}
|
2012-11-19 09:58:37 -08:00
|
|
|
|
2013-10-15 14:01:42 -07:00
|
|
|
mHwcLayerMap.AppendElement(static_cast<LayerComposite*>(aLayer->ImplData()));
|
2012-11-19 09:58:37 -08:00
|
|
|
mList->numHwLayers++;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-11 06:10:33 -07:00
|
|
|
|
2014-02-21 05:30:20 -08:00
|
|
|
#if ANDROID_VERSION >= 17
|
2013-09-11 06:10:33 -07:00
|
|
|
bool
|
|
|
|
HwcComposer2D::TryHwComposition()
|
|
|
|
{
|
|
|
|
FramebufferSurface* fbsurface = (FramebufferSurface*)(GetGonkDisplay()->GetFBSurface());
|
|
|
|
|
2013-10-08 08:29:35 -07:00
|
|
|
if (!(fbsurface && fbsurface->lastHandle)) {
|
|
|
|
LOGD("H/W Composition failed. FBSurface not initialized.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add FB layer
|
|
|
|
int idx = mList->numHwLayers++;
|
|
|
|
if (idx >= mMaxLayerCount) {
|
|
|
|
if (!ReallocLayerList() || idx >= mMaxLayerCount) {
|
|
|
|
LOGE("TryHwComposition failed! Could not add FB layer");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Prepare(fbsurface->lastHandle, -1);
|
|
|
|
|
2014-01-16 09:47:35 -08:00
|
|
|
/* Possible composition paths, after hwc prepare:
|
|
|
|
1. GPU Composition
|
|
|
|
2. BLIT Composition
|
|
|
|
3. Full OVERLAY Composition
|
|
|
|
4. Partial OVERLAY Composition (GPU + OVERLAY) */
|
|
|
|
|
|
|
|
bool gpuComposite = false;
|
|
|
|
bool blitComposite = false;
|
|
|
|
bool overlayComposite = true;
|
|
|
|
|
|
|
|
for (int j=0; j < idx; j++) {
|
|
|
|
if (mList->hwLayers[j].compositionType == HWC_FRAMEBUFFER ||
|
|
|
|
mList->hwLayers[j].compositionType == HWC_BLIT) {
|
|
|
|
// Full OVERLAY composition is not possible on this frame
|
|
|
|
// It is either GPU / BLIT / partial OVERLAY composition.
|
|
|
|
overlayComposite = false;
|
2013-10-15 14:01:42 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-16 09:47:35 -08:00
|
|
|
if (!overlayComposite) {
|
2013-10-15 14:01:42 -07:00
|
|
|
for (int k=0; k < idx; k++) {
|
2014-01-16 09:47:35 -08:00
|
|
|
switch (mList->hwLayers[k].compositionType) {
|
|
|
|
case HWC_FRAMEBUFFER:
|
|
|
|
gpuComposite = true;
|
|
|
|
break;
|
|
|
|
case HWC_BLIT:
|
|
|
|
blitComposite = true;
|
|
|
|
break;
|
|
|
|
case HWC_OVERLAY:
|
|
|
|
// HWC will compose HWC_OVERLAY layers in partial
|
|
|
|
// Overlay Composition, set layer composition flag
|
|
|
|
// on mapped LayerComposite to skip GPU composition
|
|
|
|
mHwcLayerMap[k]->SetLayerComposited(true);
|
2014-03-13 14:22:18 -07:00
|
|
|
if ((mList->hwLayers[k].hints & HWC_HINT_CLEAR_FB) &&
|
2014-01-17 18:55:30 -08:00
|
|
|
(mList->hwLayers[k].blending == HWC_BLENDING_NONE)) {
|
|
|
|
// Clear visible rect on FB with transparent pixels.
|
2014-02-27 11:07:34 -08:00
|
|
|
hwc_rect_t r = mList->hwLayers[k].displayFrame;
|
|
|
|
mHwcLayerMap[k]->SetClearRect(nsIntRect(r.left, r.top,
|
|
|
|
r.right - r.left,
|
|
|
|
r.bottom - r.top));
|
2014-01-17 18:55:30 -08:00
|
|
|
}
|
2014-01-16 09:47:35 -08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2013-10-15 14:01:42 -07:00
|
|
|
}
|
2013-10-08 08:29:35 -07:00
|
|
|
}
|
2014-01-16 09:47:35 -08:00
|
|
|
|
|
|
|
if (gpuComposite) {
|
|
|
|
// GPU or partial OVERLAY Composition
|
|
|
|
return false;
|
|
|
|
} else if (blitComposite) {
|
|
|
|
// BLIT Composition, flip FB target
|
|
|
|
GetGonkDisplay()->UpdateFBSurface(mDpy, mSur);
|
|
|
|
FramebufferSurface* fbsurface = (FramebufferSurface*)(GetGonkDisplay()->GetFBSurface());
|
|
|
|
if (!fbsurface) {
|
|
|
|
LOGE("H/W Composition failed. NULL FBSurface.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
mList->hwLayers[idx].handle = fbsurface->lastHandle;
|
2014-03-17 18:36:56 -07:00
|
|
|
mList->hwLayers[idx].acquireFenceFd = fbsurface->GetPrevFBAcquireFd();
|
2014-01-16 09:47:35 -08:00
|
|
|
}
|
2013-10-08 08:29:35 -07:00
|
|
|
}
|
|
|
|
|
2014-01-16 09:47:35 -08:00
|
|
|
// BLIT or full OVERLAY Composition
|
2013-10-08 08:29:35 -07:00
|
|
|
Commit();
|
|
|
|
|
2014-01-16 09:47:35 -08:00
|
|
|
GetGonkDisplay()->SetFBReleaseFd(mList->hwLayers[idx].releaseFenceFd);
|
2013-10-08 08:29:35 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
HwcComposer2D::Render(EGLDisplay dpy, EGLSurface sur)
|
|
|
|
{
|
|
|
|
if (!mList) {
|
|
|
|
// After boot, HWC list hasn't been created yet
|
|
|
|
return GetGonkDisplay()->SwapBuffers(dpy, sur);
|
|
|
|
}
|
|
|
|
|
|
|
|
GetGonkDisplay()->UpdateFBSurface(dpy, sur);
|
|
|
|
|
|
|
|
FramebufferSurface* fbsurface = (FramebufferSurface*)(GetGonkDisplay()->GetFBSurface());
|
2013-09-11 06:10:33 -07:00
|
|
|
if (!fbsurface) {
|
|
|
|
LOGE("H/W Composition failed. FBSurface not initialized.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-12-11 12:37:25 -08:00
|
|
|
if (mPrepared) {
|
2013-10-08 08:29:35 -07:00
|
|
|
// No mHwc prepare, if already prepared in current draw cycle
|
|
|
|
mList->hwLayers[mList->numHwLayers - 1].handle = fbsurface->lastHandle;
|
2014-03-17 18:36:56 -07:00
|
|
|
mList->hwLayers[mList->numHwLayers - 1].acquireFenceFd = fbsurface->GetPrevFBAcquireFd();
|
2013-10-08 08:29:35 -07:00
|
|
|
} else {
|
2014-04-03 18:59:13 -07:00
|
|
|
mList->flags = HWC_GEOMETRY_CHANGED;
|
2013-10-08 08:29:35 -07:00
|
|
|
mList->numHwLayers = 2;
|
|
|
|
mList->hwLayers[0].hints = 0;
|
2014-03-28 11:05:43 -07:00
|
|
|
mList->hwLayers[0].compositionType = HWC_FRAMEBUFFER;
|
2013-10-08 08:29:35 -07:00
|
|
|
mList->hwLayers[0].flags = HWC_SKIP_LAYER;
|
|
|
|
mList->hwLayers[0].backgroundColor = {0};
|
2013-12-02 16:58:39 -08:00
|
|
|
mList->hwLayers[0].acquireFenceFd = -1;
|
|
|
|
mList->hwLayers[0].releaseFenceFd = -1;
|
2013-10-08 08:29:35 -07:00
|
|
|
mList->hwLayers[0].displayFrame = {0, 0, mScreenRect.width, mScreenRect.height};
|
2014-03-17 18:36:56 -07:00
|
|
|
Prepare(fbsurface->lastHandle, fbsurface->GetPrevFBAcquireFd());
|
2013-10-08 08:29:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// GPU or partial HWC Composition
|
|
|
|
Commit();
|
|
|
|
|
|
|
|
GetGonkDisplay()->SetFBReleaseFd(mList->hwLayers[mList->numHwLayers - 1].releaseFenceFd);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HwcComposer2D::Prepare(buffer_handle_t fbHandle, int fence)
|
|
|
|
{
|
|
|
|
int idx = mList->numHwLayers - 1;
|
2013-09-11 06:10:33 -07:00
|
|
|
const hwc_rect_t r = {0, 0, mScreenRect.width, mScreenRect.height};
|
2013-10-08 08:29:35 -07:00
|
|
|
hwc_display_contents_1_t *displays[HWC_NUM_DISPLAY_TYPES] = { nullptr };
|
2013-09-11 06:10:33 -07:00
|
|
|
|
|
|
|
displays[HWC_DISPLAY_PRIMARY] = mList;
|
2013-10-08 08:29:35 -07:00
|
|
|
mList->outbufAcquireFenceFd = -1;
|
|
|
|
mList->outbuf = nullptr;
|
2013-09-11 06:10:33 -07:00
|
|
|
mList->retireFenceFd = -1;
|
|
|
|
|
|
|
|
mList->hwLayers[idx].hints = 0;
|
|
|
|
mList->hwLayers[idx].flags = 0;
|
|
|
|
mList->hwLayers[idx].transform = 0;
|
2013-10-08 08:29:35 -07:00
|
|
|
mList->hwLayers[idx].handle = fbHandle;
|
2013-09-11 06:10:33 -07:00
|
|
|
mList->hwLayers[idx].blending = HWC_BLENDING_PREMULT;
|
|
|
|
mList->hwLayers[idx].compositionType = HWC_FRAMEBUFFER_TARGET;
|
2014-02-05 14:55:00 -08:00
|
|
|
setCrop(&mList->hwLayers[idx], r);
|
2013-09-11 06:10:33 -07:00
|
|
|
mList->hwLayers[idx].displayFrame = r;
|
|
|
|
mList->hwLayers[idx].visibleRegionScreen.numRects = 1;
|
2014-02-05 14:55:00 -08:00
|
|
|
mList->hwLayers[idx].visibleRegionScreen.rects = &mList->hwLayers[idx].displayFrame;
|
2013-10-08 08:29:35 -07:00
|
|
|
mList->hwLayers[idx].acquireFenceFd = fence;
|
2013-09-11 06:10:33 -07:00
|
|
|
mList->hwLayers[idx].releaseFenceFd = -1;
|
2014-02-21 05:30:20 -08:00
|
|
|
#if ANDROID_VERSION >= 18
|
2013-09-11 06:10:33 -07:00
|
|
|
mList->hwLayers[idx].planeAlpha = 0xFF;
|
2014-02-21 05:30:20 -08:00
|
|
|
#endif
|
2013-12-11 12:37:25 -08:00
|
|
|
if (mPrepared) {
|
|
|
|
LOGE("Multiple hwc prepare calls!");
|
|
|
|
}
|
2013-09-11 06:10:33 -07:00
|
|
|
mHwc->prepare(mHwc, HWC_NUM_DISPLAY_TYPES, displays);
|
2013-12-11 12:37:25 -08:00
|
|
|
mPrepared = true;
|
2013-10-08 08:29:35 -07:00
|
|
|
}
|
2013-09-11 06:10:33 -07:00
|
|
|
|
2013-10-08 08:29:35 -07:00
|
|
|
bool
|
|
|
|
HwcComposer2D::Commit()
|
|
|
|
{
|
|
|
|
hwc_display_contents_1_t *displays[HWC_NUM_DISPLAY_TYPES] = { nullptr };
|
|
|
|
displays[HWC_DISPLAY_PRIMARY] = mList;
|
2013-09-11 06:10:33 -07:00
|
|
|
|
2013-10-08 08:29:35 -07:00
|
|
|
int err = mHwc->set(mHwc, HWC_NUM_DISPLAY_TYPES, displays);
|
2013-09-11 06:10:33 -07:00
|
|
|
|
2014-02-24 20:23:41 -08:00
|
|
|
mPrevDisplayFence = mPrevRetireFence;
|
|
|
|
mPrevRetireFence = Fence::NO_FENCE;
|
2013-09-11 06:10:33 -07:00
|
|
|
|
2013-10-15 14:01:42 -07:00
|
|
|
for (uint32_t j=0; j < (mList->numHwLayers - 1); j++) {
|
2013-11-27 17:38:42 -08:00
|
|
|
if (mList->hwLayers[j].releaseFenceFd >= 0) {
|
2014-02-24 20:23:41 -08:00
|
|
|
int fd = mList->hwLayers[j].releaseFenceFd;
|
|
|
|
mList->hwLayers[j].releaseFenceFd = -1;
|
|
|
|
sp<Fence> fence = new Fence(fd);
|
|
|
|
|
|
|
|
LayerRenderState state = mHwcLayerMap[j]->GetLayer()->GetRenderState();
|
|
|
|
if (!state.mTexture) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
TextureHostOGL* texture = state.mTexture->AsHostOGL();
|
|
|
|
if (!texture) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
texture->SetReleaseFence(fence);
|
|
|
|
}
|
|
|
|
}
|
2013-09-11 06:10:33 -07:00
|
|
|
|
2013-11-27 17:38:42 -08:00
|
|
|
if (mList->retireFenceFd >= 0) {
|
2014-02-24 20:23:41 -08:00
|
|
|
mPrevRetireFence = new Fence(mList->retireFenceFd);
|
2013-11-27 17:38:42 -08:00
|
|
|
}
|
|
|
|
|
2013-12-11 12:37:25 -08:00
|
|
|
mPrepared = false;
|
2013-10-08 08:29:35 -07:00
|
|
|
return !err;
|
2013-09-11 06:10:33 -07:00
|
|
|
}
|
2013-12-11 12:37:25 -08:00
|
|
|
|
|
|
|
void
|
|
|
|
HwcComposer2D::Reset()
|
|
|
|
{
|
|
|
|
LOGD("hwcomposer is already prepared, reset with null set");
|
|
|
|
hwc_display_contents_1_t *displays[HWC_NUM_DISPLAY_TYPES] = { nullptr };
|
|
|
|
displays[HWC_DISPLAY_PRIMARY] = nullptr;
|
|
|
|
mHwc->set(mHwc, HWC_DISPLAY_PRIMARY, displays);
|
|
|
|
mPrepared = false;
|
|
|
|
}
|
2013-09-11 06:10:33 -07:00
|
|
|
#else
|
|
|
|
bool
|
|
|
|
HwcComposer2D::TryHwComposition()
|
|
|
|
{
|
|
|
|
return !mHwc->set(mHwc, mDpy, mSur, mList);
|
|
|
|
}
|
2013-10-08 08:29:35 -07:00
|
|
|
|
|
|
|
bool
|
|
|
|
HwcComposer2D::Render(EGLDisplay dpy, EGLSurface sur)
|
|
|
|
{
|
|
|
|
return GetGonkDisplay()->SwapBuffers(dpy, sur);
|
|
|
|
}
|
2013-12-11 12:37:25 -08:00
|
|
|
|
|
|
|
void
|
|
|
|
HwcComposer2D::Reset()
|
|
|
|
{
|
|
|
|
mPrepared = false;
|
|
|
|
}
|
2013-09-11 06:10:33 -07:00
|
|
|
#endif
|
|
|
|
|
2012-11-19 09:58:37 -08:00
|
|
|
bool
|
|
|
|
HwcComposer2D::TryRender(Layer* aRoot,
|
2014-04-03 18:59:13 -07:00
|
|
|
const gfx::Matrix& GLWorldTransform,
|
|
|
|
bool aGeometryChanged)
|
2012-11-19 09:58:37 -08:00
|
|
|
{
|
2014-01-15 23:22:19 -08:00
|
|
|
gfxMatrix aGLWorldTransform = ThebesMatrix(GLWorldTransform);
|
2013-01-29 17:21:04 -08:00
|
|
|
if (!aGLWorldTransform.PreservesAxisAlignedRectangles()) {
|
|
|
|
LOGD("Render aborted. World transform has non-square angle rotation");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-19 09:58:37 -08:00
|
|
|
MOZ_ASSERT(Initialized());
|
|
|
|
if (mList) {
|
2014-04-03 18:59:13 -07:00
|
|
|
setHwcGeometry(aGeometryChanged);
|
2012-11-19 09:58:37 -08:00
|
|
|
mList->numHwLayers = 0;
|
2013-10-15 14:01:42 -07:00
|
|
|
mHwcLayerMap.Clear();
|
2012-11-19 09:58:37 -08:00
|
|
|
}
|
|
|
|
|
2013-12-11 12:37:25 -08:00
|
|
|
if (mPrepared) {
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
|
2013-04-29 17:21:54 -07:00
|
|
|
// XXX: The clear() below means all rect vectors will be have to be
|
|
|
|
// reallocated. We may want to avoid this if possible
|
|
|
|
mVisibleRegions.clear();
|
|
|
|
|
2013-10-15 14:01:42 -07:00
|
|
|
MOZ_ASSERT(mHwcLayerMap.IsEmpty());
|
2013-01-17 13:34:01 -08:00
|
|
|
if (!PrepareLayerList(aRoot,
|
|
|
|
mScreenRect,
|
|
|
|
gfxMatrix(),
|
|
|
|
aGLWorldTransform))
|
|
|
|
{
|
2012-11-19 09:58:37 -08:00
|
|
|
LOGD("Render aborted. Nothing was drawn to the screen");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-09-11 06:10:33 -07:00
|
|
|
if (!TryHwComposition()) {
|
2013-10-08 08:29:35 -07:00
|
|
|
LOGD("H/W Composition failed");
|
|
|
|
return false;
|
2012-11-19 09:58:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
LOGD("Frame rendered");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|