OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GLSurface
(Results
51 - 75
of
87
) sorted by null
1
2
3
4
/external/chromium_org/content/common/gpu/
texture_image_transport_surface.h
25
public gfx::
GLSurface
{
31
// gfx::
GLSurface
implementation.
92
// The current size of the
GLSurface
. Used to disambiguate from the current
108
scoped_refptr<gfx::
GLSurface
> surface_;
image_transport_surface_win.cc
34
// gfx::
GLSurface
implementation
190
std::string extensions = gfx::
GLSurface
::GetExtensions();
254
scoped_refptr<gfx::
GLSurface
> ImageTransportSurface::CreateNativeSurface(
277
return scoped_refptr<gfx::
GLSurface
>(
282
scoped_refptr<gfx::
GLSurface
> surface =
283
gfx::
GLSurface
::CreateViewGLSurface(handle.handle);
286
return scoped_refptr<gfx::
GLSurface
>(new PassThroughImageTransportSurface(
gpu_channel_manager.h
103
gfx::
GLSurface
* GetDefaultOffscreenSurface();
154
scoped_refptr<gfx::
GLSurface
> default_offscreen_surface_;
image_transport_surface_mac.cc
46
//
GLSurface
implementation
284
std::string extensions = gfx::
GLSurface
::GetExtensions();
421
GLSurface
::ExtensionsContain(
504
// Implement a subset of
GLSurface
.
521
scoped_refptr<gfx::
GLSurface
> ImageTransportSurface::CreateNativeSurface(
533
return scoped_refptr<gfx::
GLSurface
>();
535
return scoped_refptr<gfx::
GLSurface
>(new IOSurfaceImageTransportSurface(
544
return scoped_refptr<gfx::
GLSurface
>();
546
scoped_refptr<gfx::
GLSurface
> surface(new DRTSurfaceOSMesa());
549
return scoped_refptr<gfx::
GLSurface
>(new PassThroughImageTransportSurface
[
all
...]
image_transport_surface.cc
28
scoped_refptr<gfx::
GLSurface
> ImageTransportSurface::CreateSurface(
32
scoped_refptr<gfx::
GLSurface
> surface;
219
gfx::
GLSurface
* surface,
gpu_command_buffer_stub.h
131
gfx::
GLSurface
* surface() const { return surface_.get(); }
238
scoped_refptr<gfx::
GLSurface
> surface_;
gpu_channel_manager.cc
295
gfx::
GLSurface
* GpuChannelManager::GetDefaultOffscreenSurface() {
298
gfx::
GLSurface
::CreateOffscreenGLSurface(gfx::Size(1, 1));
/external/chromium_org/gpu/command_buffer/tests/
gl_manager.cc
33
scoped_refptr<gfx::
GLSurface
>* GLManager::base_surface_;
141
surface_ = gfx::
GLSurface
::CreateOffscreenGLSurface(options.size);
219
base_surface_ = new scoped_refptr<gfx::
GLSurface
>(
220
gfx::
GLSurface
::CreateOffscreenGLSurface(size));
235
void GLManager::SetSurface(gfx::
GLSurface
* surface) {
/external/chromium_org/content/browser/android/in_process/
synchronous_compositor_factory_impl.cc
34
scoped_refptr<gfx::
GLSurface
> surface,
40
surface = gfx::
GLSurface
::CreateOffscreenGLSurface(gfx::Size(1, 1));
181
scoped_refptr<gfx::
GLSurface
> surface) {
242
gfx::
GLSurface
::InitializeOneOff();
synchronous_compositor_impl.h
52
scoped_refptr<gfx::
GLSurface
> surface) OVERRIDE;
/external/chromium_org/mojo/shell/android/
mojo_main.cc
56
gfx::
GLSurface
::InitializeOneOff();
/external/chromium_org/ui/gl/
gl_context_cgl.cc
77
bool GLContextCGL::Initialize(
GLSurface
* compatible_surface,
139
bool GLContextCGL::MakeCurrent(
GLSurface
* surface) {
206
void GLContextCGL::ReleaseCurrent(
GLSurface
* surface) {
214
bool GLContextCGL::IsCurrent(
GLSurface
* surface) {
gl_surface_glx.h
21
class GL_EXPORT GLSurfaceGLX : public
GLSurface
{
gl_gl_api_implementation.cc
284
bool VirtualGLApi::MakeCurrent(GLContext* virtual_context,
GLSurface
* surface) {
286
GLSurface
* current_surface =
GLSurface
::GetCurrent();
289
// calls if the
GLSurface
uses the same underlying surface or renders to
324
LOG(ERROR) << "Could not make
GLSurface
current.";
gl_surface_egl.h
25
class GL_EXPORT GLSurfaceEGL : public
GLSurface
{
29
// Implement
GLSurface
.
55
// Implement
GLSurface
.
93
// Implement
GLSurface
.
121
// Implement
GLSurface
.
/external/chromium_org/ui/surface/
accelerated_surface_mac.h
119
scoped_refptr<gfx::
GLSurface
> gl_surface_;
accelerated_surface_mac.cc
33
if (!gfx::
GLSurface
::InitializeOneOff())
42
gl_surface_ = gfx::
GLSurface
::CreateOffscreenGLSurface(gfx::Size(1, 1));
/external/chromium_org/gpu/gles2_conform_support/egl/
display.h
89
scoped_refptr<gfx::
GLSurface
> gl_surface_;
display.cc
130
gl_surface_ = gfx::
GLSurface
::CreateOffscreenGLSurface(size);
135
gl_surface_ = gfx::
GLSurface
::CreateViewGLSurface(win);
/external/chromium_org/ui/compositor/test/
default_context_factory.cc
24
if (!gfx::
GLSurface
::InitializeOneOff() ||
/external/chromium_org/content/gpu/
gpu_main.cc
222
if (gfx::
GLSurface
::InitializeOneOff()) {
264
VLOG(1) << "gfx::
GLSurface
::InitializeOneOff failed";
336
scoped_refptr<gfx::
GLSurface
> surface(
337
gfx::
GLSurface
::CreateOffscreenGLSurface(gfx::Size(1, 1)));
339
VLOG(1) << "gfx::
GLSurface
::CreateOffscreenGLSurface failed";
gpu_child_thread.cc
70
if (!gfx::
GLSurface
::InitializeOneOff()) {
71
VLOG(1) << "gfx::
GLSurface
::InitializeOneOff()";
/external/chromium_org/gpu/command_buffer/service/
in_process_command_buffer.h
32
class
GLSurface
;
70
// a new
GLSurface
.
71
bool Initialize(scoped_refptr<gfx::
GLSurface
> surface,
197
scoped_refptr<gfx::
GLSurface
> surface_;
/external/chromium_org/gpu/command_buffer/client/
gl_in_process_context.cc
55
scoped_refptr<gfx::
GLSurface
> surface,
123
scoped_refptr<gfx::
GLSurface
> surface,
336
scoped_refptr<gfx::
GLSurface
> surface,
/external/chromium_org/gpu/config/
gpu_info_collector_android.cc
68
if (gfx::
GLSurface
::InitializeOneOff()) {
Completed in 1001 milliseconds
1
2
3
4