OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SkCommandBufferGLContext
(Results
1 - 5
of
5
) sorted by null
/external/skia/include/gpu/gl/command_buffer/
SkCommandBufferGLContext.h
15
class
SkCommandBufferGLContext
: public SkGLContext {
17
~
SkCommandBufferGLContext
() override;
19
static
SkCommandBufferGLContext
* CreateES2() {
20
SkCommandBufferGLContext
* ctx = new
SkCommandBufferGLContext
(kGLES2_ContextVersion);
27
static
SkCommandBufferGLContext
* CreateES3() {
28
SkCommandBufferGLContext
* ctx = new
SkCommandBufferGLContext
(kGLES3_ContextVersion);
36
static
SkCommandBufferGLContext
* Create(void* nativeWindow, int msaaSampleCount) {
37
SkCommandBufferGLContext
* ctx = new SkCommandBufferGLContext(nativeWindow
[
all
...]
/external/skia/src/gpu/gl/command_buffer/
SkCommandBufferGLContext.cpp
11
#include "gl/command_buffer/
SkCommandBufferGLContext
.h"
146
SkCommandBufferGLContext
::
SkCommandBufferGLContext
(ContextVersion minContextVersion)
171
SkCommandBufferGLContext
::
SkCommandBufferGLContext
(void* nativeWindow, int msaaSampleCount) {
194
void
SkCommandBufferGLContext
::initializeGLContext(ContextVersion minContextVersion,
273
SkCommandBufferGLContext
::~
SkCommandBufferGLContext
() {
278
void
SkCommandBufferGLContext
::destroyGLContext() {
306
void
SkCommandBufferGLContext
::onPlatformMakeCurrent() const
[
all
...]
/external/skia/include/views/
SkOSWindow_Win.h
22
class
SkCommandBufferGLContext
;
107
SkCommandBufferGLContext
* fCommandBuffer;
/external/skia/src/gpu/
GrContextFactory.cpp
15
#include "gl/command_buffer/
SkCommandBufferGLContext
.h"
99
glCtx.reset(
SkCommandBufferGLContext
::CreateES2());
102
glCtx.reset(
SkCommandBufferGLContext
::CreateES3());
/external/skia/src/views/win/
SkOSWindow_win.cpp
36
#include "gl/command_buffer/
SkCommandBufferGLContext
.h"
557
fCommandBuffer =
SkCommandBufferGLContext
::Create((HWND)fHWND, msaaSampleCount);
Completed in 86 milliseconds