Home | History | Annotate | Download | only in gl

Lines Matching refs:GLSurface

21 base::LazyInstance<base::ThreadLocalPointer<GLSurface> >::Leaky
26 bool GLSurface::InitializeOneOff() {
31 TRACE_EVENT0("gpu", "GLSurface::InitializeOneOff");
76 GLSurface::GLSurface() {}
78 bool GLSurface::Initialize() {
82 bool GLSurface::Resize(const gfx::Size& size) {
87 bool GLSurface::Recreate() {
92 bool GLSurface::DeferDraws() {
96 std::string GLSurface::GetExtensions() {
100 bool GLSurface::HasExtension(const char* name) {
110 unsigned int GLSurface::GetBackingFrameBufferObject() {
114 bool GLSurface::PostSubBuffer(int x, int y, int width, int height) {
118 bool GLSurface::OnMakeCurrent(GLContext* context) {
122 bool GLSurface::SetBackbufferAllocation(bool allocated) {
126 void GLSurface::SetFrontbufferAllocation(bool allocated) {
129 void* GLSurface::GetShareHandle() {
134 void* GLSurface::GetDisplay() {
139 void* GLSurface::GetConfig() {
144 unsigned GLSurface::GetFormat() {
149 VSyncProvider* GLSurface::GetVSyncProvider() {
153 GLSurface* GLSurface::GetCurrent() {
157 GLSurface::~GLSurface() {
162 void GLSurface::SetCurrent(GLSurface* surface) {
166 bool GLSurface::ExtensionsContain(const char* c_extensions, const char* name) {
179 GLSurfaceAdapter::GLSurfaceAdapter(GLSurface* surface) : surface_(surface) {}