Home
last modified time | relevance | path

Searched defs:DisplayDeviceState (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/services/surfaceflinger/
DDisplayDevice.h315 struct DisplayDeviceState { struct
319 bool isValid() const { return type >= 0; } in isValid()
320 bool isMainDisplay() const { return type == DisplayDevice::DISPLAY_PRIMARY; } in isMainDisplay()
321 bool isVirtualDisplay() const { return type >= DisplayDevice::DISPLAY_VIRTUAL; } in isVirtualDisplay()
323 static std::atomic<int32_t> nextDisplayId;
324 int32_t displayId = nextDisplayId++;
325 DisplayDevice::DisplayType type = DisplayDevice::DISPLAY_ID_INVALID;
326 sp<IGraphicBufferProducer> surface;
327 uint32_t layerStack = DisplayDevice::NO_LAYER_STACK;
328 Rect viewport;
[all …]
DDisplayDevice.cpp796 DisplayDeviceState::DisplayDeviceState(DisplayDevice::DisplayType type, bool isSecure) in DisplayDeviceState() function in android::DisplayDeviceState