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"
|
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"
|
|
|
|
#include "mozilla/StaticPtr.h"
|
2013-01-09 04:56:37 -08:00
|
|
|
#include "cutils/properties.h"
|
2012-11-19 09:58:37 -08:00
|
|
|
|
2013-09-11 06:10:33 -07:00
|
|
|
#if ANDROID_VERSION >= 18
|
|
|
|
#include "libdisplay/FramebufferSurface.h"
|
|
|
|
#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()
|
|
|
|
: mMaxLayerCount(0)
|
|
|
|
, mList(nullptr)
|
2013-05-07 20:58:22 -07:00
|
|
|
, mHwc(nullptr)
|
2013-09-27 13:37:19 -07:00
|
|
|
, mColorFill(false)
|
|
|
|
, mRBSwapSupport(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
|
|
|
|
2013-09-27 13:37:19 -07:00
|
|
|
#if ANDROID_VERSION >= 18
|
|
|
|
int supported = 0;
|
|
|
|
if (mHwc->query(mHwc, HwcUtils::HWC_COLOR_FILL, &supported) == NO_ERROR) {
|
|
|
|
mColorFill = supported ? true : false;
|
|
|
|
}
|
|
|
|
if (mHwc->query(mHwc, HwcUtils::HWC_FORMAT_RB_SWAP, &supported) == NO_ERROR) {
|
|
|
|
mRBSwapSupport = supported ? true : false;
|
|
|
|
}
|
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
float opacity = aLayer->GetEffectiveOpacity();
|
2013-04-29 17:20:51 -07:00
|
|
|
if (opacity < 1) {
|
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-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;
|
|
|
|
const gfx3DMatrix& transform3D = aLayer->GetEffectiveTransform();
|
|
|
|
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()) {
|
|
|
|
if (container->UseIntermediateSurface()) {
|
|
|
|
LOGD("Container layer needs intermediate surface");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// OK! We can compose this layer with hwc.
|
|
|
|
|
|
|
|
int current = mList ? mList->numHwLayers : 0;
|
|
|
|
if (!mList || current >= mMaxLayerCount) {
|
|
|
|
if (!ReallocLayerList() || current >= mMaxLayerCount) {
|
|
|
|
LOGE("PrepareLayerList failed! Could not increase the maximum layer count");
|
|
|
|
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
|
|
|
|
2013-09-11 06:10:33 -07:00
|
|
|
HwcLayer& hwcLayer = mList->hwLayers[current];
|
2012-11-19 09:58:37 -08:00
|
|
|
|
2013-08-29 08:17:59 -07:00
|
|
|
if(!HwcUtils::PrepareLayerRects(visibleRect,
|
2013-01-17 13:34:01 -08:00
|
|
|
transform * aGLWorldTransform,
|
|
|
|
clip,
|
|
|
|
bufferRect,
|
|
|
|
&(hwcLayer.sourceCrop),
|
|
|
|
&(hwcLayer.displayFrame)))
|
|
|
|
{
|
2012-11-19 09:58:37 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
hwcLayer.flags = 0;
|
|
|
|
hwcLayer.hints = 0;
|
2013-02-12 10:47:07 -08:00
|
|
|
hwcLayer.blending = HWC_BLENDING_PREMULT;
|
2013-09-11 06:10:33 -07:00
|
|
|
#if ANDROID_VERSION >= 18
|
|
|
|
hwcLayer.compositionType = HWC_FRAMEBUFFER;
|
|
|
|
|
|
|
|
hwcLayer.acquireFenceFd = -1;
|
|
|
|
hwcLayer.releaseFenceFd = -1;
|
|
|
|
hwcLayer.planeAlpha = 0xFF; // Until plane alpha is enabled
|
|
|
|
#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
|
|
|
|
|
|
|
mList->numHwLayers++;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-11 06:10:33 -07:00
|
|
|
|
|
|
|
#if ANDROID_VERSION >= 18
|
|
|
|
bool
|
|
|
|
HwcComposer2D::TryHwComposition()
|
|
|
|
{
|
|
|
|
FramebufferSurface* fbsurface = (FramebufferSurface*)(GetGonkDisplay()->GetFBSurface());
|
|
|
|
|
|
|
|
if (!fbsurface) {
|
|
|
|
LOGE("H/W Composition failed. FBSurface not initialized.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-08 06:39:07 -07:00
|
|
|
hwc_display_contents_1_t *displays[HWC_NUM_DISPLAY_TYPES] = {NULL};
|
2013-09-11 06:10:33 -07:00
|
|
|
const hwc_rect_t r = {0, 0, mScreenRect.width, mScreenRect.height};
|
2013-10-08 06:39:07 -07:00
|
|
|
int idx = mList->numHwLayers;
|
2013-09-11 06:10:33 -07:00
|
|
|
|
|
|
|
displays[HWC_DISPLAY_PRIMARY] = mList;
|
|
|
|
mList->flags = HWC_GEOMETRY_CHANGED;
|
|
|
|
mList->retireFenceFd = -1;
|
|
|
|
|
|
|
|
mList->hwLayers[idx].hints = 0;
|
|
|
|
mList->hwLayers[idx].flags = 0;
|
|
|
|
mList->hwLayers[idx].transform = 0;
|
2013-10-08 06:39:07 -07:00
|
|
|
mList->hwLayers[idx].handle = fbsurface->lastHandle;
|
2013-09-11 06:10:33 -07:00
|
|
|
mList->hwLayers[idx].blending = HWC_BLENDING_PREMULT;
|
|
|
|
mList->hwLayers[idx].compositionType = HWC_FRAMEBUFFER_TARGET;
|
|
|
|
mList->hwLayers[idx].sourceCrop = r;
|
|
|
|
mList->hwLayers[idx].displayFrame = r;
|
|
|
|
mList->hwLayers[idx].visibleRegionScreen.numRects = 1;
|
|
|
|
mList->hwLayers[idx].visibleRegionScreen.rects = &mList->hwLayers[idx].sourceCrop;
|
2013-10-08 06:39:07 -07:00
|
|
|
mList->hwLayers[idx].acquireFenceFd = -1;
|
2013-09-11 06:10:33 -07:00
|
|
|
mList->hwLayers[idx].releaseFenceFd = -1;
|
|
|
|
mList->hwLayers[idx].planeAlpha = 0xFF;
|
2013-10-08 06:39:07 -07:00
|
|
|
mList->numHwLayers++;
|
2013-09-11 06:10:33 -07:00
|
|
|
|
|
|
|
mHwc->prepare(mHwc, HWC_NUM_DISPLAY_TYPES, displays);
|
|
|
|
|
2013-10-08 06:39:07 -07:00
|
|
|
for (int j = 0; j < idx; j++) {
|
|
|
|
if (mList->hwLayers[j].compositionType == HWC_FRAMEBUFFER) {
|
|
|
|
LOGD("GPU or Partial MDP Composition");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2013-09-11 06:10:33 -07:00
|
|
|
|
2013-10-08 06:39:07 -07:00
|
|
|
// Full MDP Composition
|
|
|
|
mHwc->set(mHwc, HWC_NUM_DISPLAY_TYPES, displays);
|
2013-09-11 06:10:33 -07:00
|
|
|
|
|
|
|
for (int i = 0; i <= MAX_HWC_LAYERS; i++) {
|
|
|
|
if (mPrevRelFd[i] <= 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!i) {
|
|
|
|
// Wait for previous retire Fence to signal.
|
|
|
|
// Denotes contents on display have been replaced.
|
|
|
|
// For buffer-sync, framework should not over-write
|
|
|
|
// prev buffers until we close prev releaseFenceFds
|
|
|
|
sp<Fence> fence = new Fence(mPrevRelFd[i]);
|
|
|
|
if (fence->wait(1000) == -ETIME) {
|
|
|
|
LOGE("Wait timed-out for retireFenceFd %d", mPrevRelFd[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(mPrevRelFd[i]);
|
|
|
|
mPrevRelFd[i] = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mPrevRelFd[0] = mList->retireFenceFd;
|
2013-10-08 06:39:07 -07:00
|
|
|
for (uint32_t j = 0; j < idx; j++) {
|
2013-09-11 06:10:33 -07:00
|
|
|
if (mList->hwLayers[j].compositionType == HWC_OVERLAY) {
|
|
|
|
mPrevRelFd[j + 1] = mList->hwLayers[j].releaseFenceFd;
|
|
|
|
mList->hwLayers[j].releaseFenceFd = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-08 06:39:07 -07:00
|
|
|
close(mList->hwLayers[idx].releaseFenceFd);
|
|
|
|
mList->hwLayers[idx].releaseFenceFd = -1;
|
2013-09-11 06:10:33 -07:00
|
|
|
mList->retireFenceFd = -1;
|
2013-10-08 06:39:07 -07:00
|
|
|
mList->numHwLayers = 0;
|
|
|
|
return true;
|
2013-09-11 06:10:33 -07:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
bool
|
|
|
|
HwcComposer2D::TryHwComposition()
|
|
|
|
{
|
|
|
|
return !mHwc->set(mHwc, mDpy, mSur, mList);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-11-19 09:58:37 -08:00
|
|
|
bool
|
|
|
|
HwcComposer2D::TryRender(Layer* aRoot,
|
|
|
|
const gfxMatrix& aGLWorldTransform)
|
|
|
|
{
|
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) {
|
|
|
|
mList->numHwLayers = 0;
|
|
|
|
}
|
|
|
|
|
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-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 06:39:07 -07:00
|
|
|
// Full MDP Composition
|
|
|
|
LOGE("H/W Composition failed");
|
|
|
|
return false;
|
2012-11-19 09:58:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
LOGD("Frame rendered");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|