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

Side by Side Diff: include/gpu/gl/GrGLInterface.h

Issue 1451683002: Initial version of external_oes texture support and unit test (Closed) Base URL: https://skia.googlesource.com/skia.git@target
Patch Set: again Created 5 years, 1 month 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
« no previous file with comments | « include/gpu/gl/GrGLFunctions.h ('k') | include/gpu/gl/GrGLTypes.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrGLInterface_DEFINED 8 #ifndef GrGLInterface_DEFINED
9 #define GrGLInterface_DEFINED 9 #define GrGLInterface_DEFINED
10 10
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 /* KHR_debug */ 491 /* KHR_debug */
492 GLPtr<GrGLDebugMessageControlProc> fDebugMessageControl; 492 GLPtr<GrGLDebugMessageControlProc> fDebugMessageControl;
493 GLPtr<GrGLDebugMessageInsertProc> fDebugMessageInsert; 493 GLPtr<GrGLDebugMessageInsertProc> fDebugMessageInsert;
494 GLPtr<GrGLDebugMessageCallbackProc> fDebugMessageCallback; 494 GLPtr<GrGLDebugMessageCallbackProc> fDebugMessageCallback;
495 GLPtr<GrGLGetDebugMessageLogProc> fGetDebugMessageLog; 495 GLPtr<GrGLGetDebugMessageLogProc> fGetDebugMessageLog;
496 GLPtr<GrGLPushDebugGroupProc> fPushDebugGroup; 496 GLPtr<GrGLPushDebugGroupProc> fPushDebugGroup;
497 GLPtr<GrGLPopDebugGroupProc> fPopDebugGroup; 497 GLPtr<GrGLPopDebugGroupProc> fPopDebugGroup;
498 GLPtr<GrGLObjectLabelProc> fObjectLabel; 498 GLPtr<GrGLObjectLabelProc> fObjectLabel;
499 499
500 /* EGL functions */ 500 /* EGL functions */
501 GLPtr<GrEGLCreateImageProc> fCreateImage; 501 GLPtr<GrEGLCreateImageProc> fEGLCreateImage;
502 GLPtr<GrEGLDestroyImageProc> fDestroyImage; 502 GLPtr<GrEGLDestroyImageProc> fEGLDestroyImage;
503 } fFunctions; 503 } fFunctions;
504 504
505 // Per-GL func callback 505 // Per-GL func callback
506 #if GR_GL_PER_GL_FUNC_CALLBACK 506 #if GR_GL_PER_GL_FUNC_CALLBACK
507 GrGLInterfaceCallbackProc fCallback; 507 GrGLInterfaceCallbackProc fCallback;
508 GrGLInterfaceCallbackData fCallbackData; 508 GrGLInterfaceCallbackData fCallbackData;
509 #endif 509 #endif
510 510
511 // This exists for internal testing. 511 // This exists for internal testing.
512 virtual void abandon() const {} 512 virtual void abandon() const {}
513 }; 513 };
514 514
515 #endif 515 #endif
OLDNEW
« no previous file with comments | « include/gpu/gl/GrGLFunctions.h ('k') | include/gpu/gl/GrGLTypes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698