blob: 24205d65b26f720bdd4632c7cc33cc4d823fd21d [file] [log] [blame]
// Copyright (c) 2020 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 UI_GL_GL_IMAGE_EGL_PIXMAP_H_
#define UI_GL_GL_IMAGE_EGL_PIXMAP_H_
#include <stdint.h>
#include "base/macros.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/x/glx.h"
#include "ui/gl/gl_export.h"
#include "ui/gl/gl_image.h"
typedef void* EGLSurface;
typedef void* EGLDisplay;
namespace gl {
class GL_EXPORT GLImageEGLPixmap : public GLImage {
public:
GLImageEGLPixmap(const gfx::Size& size, gfx::BufferFormat format);
bool Initialize(x11::Pixmap pixmap);
// Overridden from GLImage:
gfx::Size GetSize() override;
unsigned GetInternalFormat() override;
unsigned GetDataType() override;
BindOrCopy ShouldBindOrCopy() override;
bool BindTexImage(unsigned target) override;
void ReleaseTexImage(unsigned target) override;
void Flush() override {}
void OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd,
uint64_t process_tracing_id,
const std::string& dump_name) override;
protected:
~GLImageEGLPixmap() override;
gfx::BufferFormat format() const { return format_; }
private:
EGLSurface surface_;
const gfx::Size size_;
gfx::BufferFormat format_;
EGLDisplay display_;
DISALLOW_COPY_AND_ASSIGN(GLImageEGLPixmap);
};
} // namespace gl
#endif // UI_GL_GL_IMAGE_EGL_PIXMAP_H_