2009-03-04 03:31:44 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 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.
|
|
|
|
*/
|
|
|
|
|
2012-02-26 02:48:35 +00:00
|
|
|
#ifndef ANDROID_GUI_ISURFACE_H
|
|
|
|
#define ANDROID_GUI_ISURFACE_H
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <utils/Errors.h>
|
|
|
|
#include <utils/RefBase.h>
|
2010-02-10 01:46:37 +00:00
|
|
|
|
|
|
|
#include <binder/IInterface.h>
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
#include <ui/PixelFormat.h>
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
|
2012-12-18 17:49:45 +00:00
|
|
|
class IGraphicBufferProducer;
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
class ISurface : public IInterface
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
enum {
|
2011-04-20 21:20:59 +00:00
|
|
|
GET_SURFACE_TEXTURE = IBinder::FIRST_CALL_TRANSACTION,
|
2009-03-04 03:31:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
DECLARE_META_INTERFACE(Surface);
|
|
|
|
|
2012-12-18 17:49:45 +00:00
|
|
|
virtual sp<IGraphicBufferProducer> getSurfaceTexture() const = 0;
|
2009-03-04 03:31:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BnSurface : public BnInterface<ISurface>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual status_t onTransact( uint32_t code,
|
|
|
|
const Parcel& data,
|
|
|
|
Parcel* reply,
|
|
|
|
uint32_t flags = 0);
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
}; // namespace android
|
|
|
|
|
2012-02-26 02:48:35 +00:00
|
|
|
#endif // ANDROID_GUI_ISURFACE_H
|