blob: ed34c4f2a4fe4af6684ed3e597f15e9a5f4423ab [file] [log] [blame]
// Copyright 2013 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 COMPONENTS_VIZ_COMMON_RESOURCES_SHARED_BITMAP_H_
#define COMPONENTS_VIZ_COMMON_RESOURCES_SHARED_BITMAP_H_
#include <stddef.h>
#include <stdint.h>
#include "base/hash.h"
#include "base/macros.h"
#include "base/trace_event/memory_allocator_dump.h"
#include "components/viz/common/resources/resource_format.h"
#include "components/viz/common/viz_common_export.h"
#include "gpu/command_buffer/common/mailbox.h"
#include "ui/gfx/geometry/size.h"
namespace viz {
using SharedBitmapId = gpu::Mailbox;
struct SharedBitmapIdHash {
size_t operator()(const SharedBitmapId& id) const {
return base::Hash(id.name, sizeof(id.name));
}
};
// An object returned by the SharedBitmapGenerator that exposes the
// pixels for a SharedBitmapId. They are exposed via a class so that
// this object (or its subclass) can ensure the lifetime of the pixels
// is not cut short. While this object is kept alive, the pixels should
// remain valid.
class VIZ_COMMON_EXPORT SharedBitmap {
public:
static SharedBitmapId GenerateId();
explicit SharedBitmap(uint8_t* pixels);
virtual ~SharedBitmap();
uint8_t* pixels() { return pixels_; }
private:
uint8_t* pixels_;
DISALLOW_COPY_AND_ASSIGN(SharedBitmap);
};
} // namespace viz
#endif // COMPONENTS_VIZ_COMMON_RESOURCES_SHARED_BITMAP_H_