2009-03-04 03:31:44 +00:00
|
|
|
/*
|
2012-02-02 23:14:13 +00:00
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
2009-03-04 03:31:44 +00: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.
|
|
|
|
*/
|
|
|
|
|
2012-07-24 06:11:29 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
#include "DisplayHardware/DisplayHardwareBase.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
namespace android {
|
|
|
|
|
2012-07-24 06:11:29 +00:00
|
|
|
DisplayHardwareBase::DisplayHardwareBase(uint32_t displayIndex) {
|
2012-04-11 05:09:54 +00:00
|
|
|
mScreenAcquired = true;
|
2012-02-05 10:15:28 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
DisplayHardwareBase::~DisplayHardwareBase() {
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
bool DisplayHardwareBase::canDraw() const {
|
2011-10-11 05:18:55 +00:00
|
|
|
return mScreenAcquired;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
void DisplayHardwareBase::releaseScreen() const {
|
2012-04-11 05:09:54 +00:00
|
|
|
mScreenAcquired = false;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
void DisplayHardwareBase::acquireScreen() const {
|
|
|
|
mScreenAcquired = true;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
bool DisplayHardwareBase::isScreenAcquired() const {
|
2010-10-11 19:37:43 +00:00
|
|
|
return mScreenAcquired;
|
|
|
|
}
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
}; // namespace android
|