Lines Matching defs:GLSurface

26 base::LazyInstance<base::ThreadLocalPointer<GLSurface> >::Leaky
31 bool GLSurface::InitializeOneOff() {
34 TRACE_EVENT0("gpu", "GLSurface::InitializeOneOff");
73 bool GLSurface::InitializeOneOffImplementation(GLImplementation impl,
100 void GLSurface::InitializeOneOffForTests() {
139 void GLSurface::InitializeOneOffWithMockBindingsForTests() {
158 void GLSurface::InitializeDynamicMockBindingsForTests(GLContext* context) {
162 GLSurface::GLSurface() {}
164 bool GLSurface::Initialize() {
168 bool GLSurface::Resize(const gfx::Size& size) {
173 bool GLSurface::Recreate() {
178 bool GLSurface::DeferDraws() {
182 bool GLSurface::SupportsPostSubBuffer() {
186 unsigned int GLSurface::GetBackingFrameBufferObject() {
190 bool GLSurface::PostSubBuffer(int x, int y, int width, int height) {
194 bool GLSurface::OnMakeCurrent(GLContext* context) {
198 bool GLSurface::SetBackbufferAllocation(bool allocated) {
202 void GLSurface::SetFrontbufferAllocation(bool allocated) {
205 void* GLSurface::GetShareHandle() {
210 void* GLSurface::GetDisplay() {
215 void* GLSurface::GetConfig() {
220 unsigned GLSurface::GetFormat() {
225 VSyncProvider* GLSurface::GetVSyncProvider() {
229 bool GLSurface::ScheduleOverlayPlane(int z_order,
238 bool GLSurface::IsSurfaceless() const {
242 GLSurface* GLSurface::GetCurrent() {
246 GLSurface::~GLSurface() {
251 void GLSurface::SetCurrent(GLSurface* surface) {
255 bool GLSurface::ExtensionsContain(const char* c_extensions, const char* name) {
268 GLSurfaceAdapter::GLSurfaceAdapter(GLSurface* surface) : surface_(surface) {}