blob: 0571beab4ca9f8f725d1ccc6874e0a4a18190b3c [file] [log] [blame]
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_IO_SURFACE_LAYER_IMPL_H_
#define CC_IO_SURFACE_LAYER_IMPL_H_
#include "cc/cc_export.h"
#include "cc/layer_impl.h"
#include "ui/gfx/size.h"
namespace cc {
class CC_EXPORT IOSurfaceLayerImpl : public LayerImpl {
public:
static scoped_ptr<IOSurfaceLayerImpl> create(int id)
{
return make_scoped_ptr(new IOSurfaceLayerImpl(id));
}
virtual ~IOSurfaceLayerImpl();
void setIOSurfaceProperties(unsigned ioSurfaceId, const gfx::Size&);
virtual void appendQuads(QuadSink&, AppendQuadsData&) OVERRIDE;
virtual void willDraw(ResourceProvider*) OVERRIDE;
virtual void didLoseContext() OVERRIDE;
virtual void dumpLayerProperties(std::string*, int indent) const OVERRIDE;
private:
explicit IOSurfaceLayerImpl(int);
virtual const char* layerTypeAsString() const OVERRIDE;
unsigned m_ioSurfaceId;
gfx::Size m_ioSurfaceSize;
bool m_ioSurfaceChanged;
unsigned m_ioSurfaceTextureId;
};
}
#endif // CC_IO_SURFACE_LAYER_IMPL_H_