1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_GL_GL_IMAGE_MEMORY_H_
6 #define UI_GL_GL_IMAGE_MEMORY_H_
8 #include "ui/gl/gl_image.h"
10 #if defined(OS_WIN) || defined(USE_X11) || defined(OS_ANDROID) || \
13 #include <EGL/eglext.h>
16 #include "base/numerics/safe_math.h"
17 #include "ui/gfx/gpu_memory_buffer.h"
21 class GL_EXPORT GLImageMemory
: public GLImage
{
23 GLImageMemory(const Size
& size
, unsigned internalformat
);
25 static bool StrideInBytes(size_t width
,
27 size_t* stride_in_bytes
);
29 bool Initialize(const unsigned char* memory
, BufferFormat format
);
31 // Overridden from GLImage:
32 void Destroy(bool have_context
) override
;
33 Size
GetSize() override
;
34 unsigned GetInternalFormat() override
;
35 bool BindTexImage(unsigned target
) override
;
36 void ReleaseTexImage(unsigned target
) override
{}
37 bool CopyTexSubImage(unsigned target
,
39 const Rect
& rect
) override
;
40 void WillUseTexImage() override
;
41 void DidUseTexImage() override
;
42 void WillModifyTexImage() override
{}
43 void DidModifyTexImage() override
{}
44 bool ScheduleOverlayPlane(AcceleratedWidget widget
,
46 OverlayTransform transform
,
47 const Rect
& bounds_rect
,
48 const RectF
& crop_rect
) override
;
50 // Only dumps the GLTexture portion of the memory usage. Subclasses are
51 // responsible for dumping the CPU-side memory.
52 void OnMemoryDump(base::trace_event::ProcessMemoryDump
* pmd
,
53 uint64_t process_tracing_id
,
54 const std::string
& dump_name
) override
;
57 ~GLImageMemory() override
;
59 BufferFormat
format() const { return format_
; }
62 void DoBindTexImage(unsigned target
);
65 const unsigned internalformat_
;
66 const unsigned char* memory_
;
70 bool need_do_bind_tex_image_
;
71 #if defined(OS_WIN) || defined(USE_X11) || defined(OS_ANDROID) || \
73 unsigned egl_texture_id_
;
74 EGLImageKHR egl_image_
;
77 DISALLOW_COPY_AND_ASSIGN(GLImageMemory
);
82 #endif // UI_GL_GL_IMAGE_MEMORY_H_