2009-03-04 03:31:44 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 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.
|
|
|
|
*/
|
|
|
|
|
2010-02-10 01:46:37 +00:00
|
|
|
#ifndef ANDROID_SF_LAYER_STATE_H
|
|
|
|
#define ANDROID_SF_LAYER_STATE_H
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <utils/Errors.h>
|
|
|
|
|
|
|
|
#include <ui/Region.h>
|
2012-05-11 03:43:55 +00:00
|
|
|
#include <ui/Rect.h>
|
2010-02-10 01:46:37 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
namespace android {
|
|
|
|
|
|
|
|
class Parcel;
|
2011-06-29 02:09:31 +00:00
|
|
|
class ISurfaceComposerClient;
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2014-01-30 01:17:11 +00:00
|
|
|
/*
|
|
|
|
* Used to communicate layer information between SurfaceFlinger and its clients.
|
|
|
|
*/
|
2009-03-04 03:31:44 +00:00
|
|
|
struct layer_state_t {
|
|
|
|
|
2012-08-09 02:42:09 +00:00
|
|
|
|
|
|
|
enum {
|
2014-01-30 01:17:11 +00:00
|
|
|
eLayerHidden = 0x01, // SURFACE_HIDDEN in SurfaceControl.java
|
|
|
|
eLayerOpaque = 0x02, // SURFACE_OPAQUE
|
2012-08-09 02:42:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ePositionChanged = 0x00000001,
|
|
|
|
eLayerChanged = 0x00000002,
|
|
|
|
eSizeChanged = 0x00000004,
|
|
|
|
eAlphaChanged = 0x00000008,
|
|
|
|
eMatrixChanged = 0x00000010,
|
|
|
|
eTransparentRegionChanged = 0x00000020,
|
|
|
|
eVisibilityChanged = 0x00000040,
|
|
|
|
eLayerStackChanged = 0x00000080,
|
|
|
|
eCropChanged = 0x00000100,
|
2014-01-30 01:17:11 +00:00
|
|
|
eOpacityChanged = 0x00000200,
|
2012-08-09 02:42:09 +00:00
|
|
|
};
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
layer_state_t()
|
2013-02-12 00:40:36 +00:00
|
|
|
: what(0),
|
2012-07-25 04:41:09 +00:00
|
|
|
x(0), y(0), z(0), w(0), h(0), layerStack(0),
|
2012-07-16 22:38:18 +00:00
|
|
|
alpha(0), flags(0), mask(0),
|
2009-03-04 03:31:44 +00:00
|
|
|
reserved(0)
|
|
|
|
{
|
|
|
|
matrix.dsdx = matrix.dtdy = 1.0f;
|
|
|
|
matrix.dsdy = matrix.dtdx = 0.0f;
|
2012-05-11 03:43:55 +00:00
|
|
|
crop.makeInvalid();
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
status_t write(Parcel& output) const;
|
|
|
|
status_t read(const Parcel& input);
|
|
|
|
|
|
|
|
struct matrix22_t {
|
|
|
|
float dsdx;
|
|
|
|
float dtdx;
|
|
|
|
float dsdy;
|
|
|
|
float dtdy;
|
|
|
|
};
|
2013-02-12 00:40:36 +00:00
|
|
|
sp<IBinder> surface;
|
2009-03-04 03:31:44 +00:00
|
|
|
uint32_t what;
|
2011-08-31 01:51:54 +00:00
|
|
|
float x;
|
|
|
|
float y;
|
2009-03-04 03:31:44 +00:00
|
|
|
uint32_t z;
|
|
|
|
uint32_t w;
|
|
|
|
uint32_t h;
|
2012-07-25 04:41:09 +00:00
|
|
|
uint32_t layerStack;
|
2009-03-04 03:31:44 +00:00
|
|
|
float alpha;
|
|
|
|
uint8_t flags;
|
|
|
|
uint8_t mask;
|
|
|
|
uint8_t reserved;
|
|
|
|
matrix22_t matrix;
|
2012-05-11 03:43:55 +00:00
|
|
|
Rect crop;
|
2009-03-04 03:31:44 +00:00
|
|
|
// non POD must be last. see write/read
|
|
|
|
Region transparentRegion;
|
|
|
|
};
|
|
|
|
|
2011-06-29 02:09:31 +00:00
|
|
|
struct ComposerState {
|
|
|
|
sp<ISurfaceComposerClient> client;
|
|
|
|
layer_state_t state;
|
|
|
|
status_t write(Parcel& output) const;
|
|
|
|
status_t read(const Parcel& input);
|
|
|
|
};
|
|
|
|
|
2012-07-25 03:43:54 +00:00
|
|
|
struct DisplayState {
|
2012-08-09 02:42:09 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
eOrientationDefault = 0,
|
|
|
|
eOrientation90 = 1,
|
|
|
|
eOrientation180 = 2,
|
|
|
|
eOrientation270 = 3,
|
|
|
|
eOrientationUnchanged = 4,
|
|
|
|
eOrientationSwapMask = 0x01
|
|
|
|
};
|
|
|
|
|
2012-08-09 23:29:12 +00:00
|
|
|
enum {
|
2012-09-05 02:30:46 +00:00
|
|
|
eSurfaceChanged = 0x01,
|
|
|
|
eLayerStackChanged = 0x02,
|
2014-06-26 23:01:02 +00:00
|
|
|
eDisplayProjectionChanged = 0x04,
|
|
|
|
eDisplaySizeChanged = 0x08
|
2012-08-09 23:29:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
uint32_t what;
|
|
|
|
sp<IBinder> token;
|
2012-12-18 17:49:45 +00:00
|
|
|
sp<IGraphicBufferProducer> surface;
|
2012-08-09 23:29:12 +00:00
|
|
|
uint32_t layerStack;
|
|
|
|
uint32_t orientation;
|
|
|
|
Rect viewport;
|
|
|
|
Rect frame;
|
2014-06-26 23:01:02 +00:00
|
|
|
uint32_t width, height;
|
2012-08-09 23:29:12 +00:00
|
|
|
status_t write(Parcel& output) const;
|
|
|
|
status_t read(const Parcel& input);
|
2012-07-25 03:43:54 +00:00
|
|
|
};
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
}; // namespace android
|
|
|
|
|
2010-02-10 01:46:37 +00:00
|
|
|
#endif // ANDROID_SF_LAYER_STATE_H
|
2009-03-04 03:31:44 +00:00
|
|
|
|