OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GLSurfaceAdapter
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/ui/gl/
gl_surface.cc
179
GLSurfaceAdapter
::
GLSurfaceAdapter
(GLSurface* surface) : surface_(surface) {}
181
bool
GLSurfaceAdapter
::Initialize() {
185
void
GLSurfaceAdapter
::Destroy() {
189
bool
GLSurfaceAdapter
::Resize(const gfx::Size& size) {
193
bool
GLSurfaceAdapter
::Recreate() {
197
bool
GLSurfaceAdapter
::DeferDraws() {
201
bool
GLSurfaceAdapter
::IsOffscreen() {
205
bool
GLSurfaceAdapter
::SwapBuffers() {
209
bool
GLSurfaceAdapter
::PostSubBuffer(int x, int y, int width, int height)
[
all
...]
gl_surface.h
126
class GL_EXPORT
GLSurfaceAdapter
: public GLSurface {
128
explicit
GLSurfaceAdapter
(GLSurface* surface);
154
virtual ~
GLSurfaceAdapter
();
159
DISALLOW_COPY_AND_ASSIGN(
GLSurfaceAdapter
);
/external/chromium_org/content/common/gpu/
image_transport_surface_win.cc
27
: public gfx::
GLSurfaceAdapter
,
83
:
GLSurfaceAdapter
(new gfx::PbufferGLSurfaceEGL(gfx::Size(1, 1))),
108
return
GLSurfaceAdapter
::Initialize();
113
GLSurfaceAdapter
::Destroy();
248
return
GLSurfaceAdapter
::GetSize();
image_transport_surface.cc
221
:
GLSurfaceAdapter
(surface),
239
GLSurfaceAdapter
::Destroy();
261
bool result = gfx::
GLSurfaceAdapter
::SwapBuffers();
285
bool result = gfx::
GLSurfaceAdapter
::PostSubBuffer(x, y, width, height);
354
return
GLSurfaceAdapter
::GetSize();
image_transport_surface.h
176
//
GLSurfaceAdapter
, thereby forwarding GLSurface methods through to it.
178
: public gfx::
GLSurfaceAdapter
,
Completed in 2445 milliseconds