blob: cfa4cef27f0f6195c7608edbba5f1b0f1ad99348 [file] [log] [blame]
// Copyright 2014 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 GPU_COMMAND_BUFFER_SERVICE_IMAGE_FACTORY_H_
#define GPU_COMMAND_BUFFER_SERVICE_IMAGE_FACTORY_H_
#include "base/memory/ref_counted.h"
#include "gpu/gpu_export.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/gpu_memory_buffer.h"
namespace gl {
class GLImage;
}
namespace gpu {
class GPU_EXPORT ImageFactory {
public:
ImageFactory();
// Creates a GLImage instance for GPU memory buffer identified by |handle|.
// |client_id| should be set to the client requesting the creation of instance
// and can be used by factory implementation to verify access rights.
virtual scoped_refptr<gl::GLImage> CreateImageForGpuMemoryBuffer(
const gfx::GpuMemoryBufferHandle& handle,
const gfx::Size& size,
gfx::BufferFormat format,
unsigned internalformat,
int client_id) = 0;
protected:
virtual ~ImageFactory();
};
} // namespace gpu
#endif // GPU_COMMAND_BUFFER_SERVICE_IMAGE_FACTORY_H_