Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: mojo/gles2/mgl_impl.cc

Issue 1354353002: Add GetProcAddress to OpenGL control interface (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Unit test added Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file implements the MGL and MGL onscreen entry points exposed to the 5 // This file implements the MGL and MGL onscreen entry points exposed to the
6 // Mojo application by the shell. 6 // Mojo application by the shell.
7 7
8 #include "mojo/gles2/control_thunks_impl.h" 8 #include "mojo/gles2/control_thunks_impl.h"
9 #include "mojo/public/c/gpu/MGL/mgl.h" 9 #include "mojo/public/c/gpu/MGL/mgl.h"
10 #include "mojo/public/c/gpu/MGL/mgl_onscreen.h" 10 #include "mojo/public/c/gpu/MGL/mgl_onscreen.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 } 42 }
43 43
44 void MGLResizeSurface(uint32_t width, uint32_t height) { 44 void MGLResizeSurface(uint32_t width, uint32_t height) {
45 return gles2::ControlThunksImpl::Get()->ResizeSurface(width, height); 45 return gles2::ControlThunksImpl::Get()->ResizeSurface(width, height);
46 } 46 }
47 47
48 void MGLSwapBuffers() { 48 void MGLSwapBuffers() {
49 return gles2::ControlThunksImpl::Get()->SwapBuffers(); 49 return gles2::ControlThunksImpl::Get()->SwapBuffers();
50 } 50 }
51 51
52 MGLMustCastToProperFunctionPointerType MGLGetProcAddress(const char* procname) {
53 return gles2::ControlThunksImpl::Get()->GetProcAddress(procname);
54 }
55
52 } // extern "C" 56 } // extern "C"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698