blob: 067e4fbd2834d19e500dea9fe900c85d6cd4f87e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// 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 UI_GL_GL_IMAGE_MEMORY_H_
#define UI_GL_GL_IMAGE_MEMORY_H_
#include "ui/gl/gl_image.h"
#if defined(OS_WIN) || defined(USE_X11) || defined(OS_ANDROID) || \
defined(USE_OZONE)
#include <EGL/egl.h>
#include <EGL/eglext.h>
#endif
namespace gfx {
class GL_EXPORT GLImageMemory : public GLImage {
public:
GLImageMemory(const gfx::Size& size, unsigned internalformat);
bool Initialize(const unsigned char* memory);
// Overridden from GLImage:
virtual void Destroy(bool have_context) override;
virtual gfx::Size GetSize() override;
virtual bool BindTexImage(unsigned target) override;
virtual void ReleaseTexImage(unsigned target) override {}
virtual bool CopyTexImage(unsigned target) override;
virtual void WillUseTexImage() override;
virtual void DidUseTexImage() override;
virtual void WillModifyTexImage() override {}
virtual void DidModifyTexImage() override {}
virtual bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget,
int z_order,
OverlayTransform transform,
const Rect& bounds_rect,
const RectF& crop_rect) override;
protected:
virtual ~GLImageMemory();
bool HasValidFormat() const;
size_t Bytes() const;
private:
void DoBindTexImage(unsigned target);
const unsigned char* memory_;
const gfx::Size size_;
const unsigned internalformat_;
bool in_use_;
unsigned target_;
bool need_do_bind_tex_image_;
#if defined(OS_WIN) || defined(USE_X11) || defined(OS_ANDROID) || \
defined(USE_OZONE)
unsigned egl_texture_id_;
EGLImageKHR egl_image_;
#endif
DISALLOW_COPY_AND_ASSIGN(GLImageMemory);
};
} // namespace gfx
#endif // UI_GL_GL_IMAGE_MEMORY_H_
|