HomeSort by relevance Sort by last modified time
    Searched refs:SkScopeExit (Results 1 - 25 of 26) sorted by null

1 2

  /external/skia/src/core/
SkScopeExit.h 16 /** SkScopeExit calls a std:::function<void()> in its destructor. */
17 class SkScopeExit {
19 SkScopeExit(std::function<void()> f) : fFn(std::move(f)) {}
20 SkScopeExit(SkScopeExit&& that) : fFn(std::move(that.fFn)) {}
22 ~SkScopeExit() {
30 SkScopeExit& operator=(SkScopeExit&& that) {
38 SkScopeExit( const SkScopeExit& ) = delete
    [all...]
  /external/skqp/src/core/
SkScopeExit.h 16 /** SkScopeExit calls a std:::function<void()> in its destructor. */
17 class SkScopeExit {
19 SkScopeExit(std::function<void()> f) : fFn(std::move(f)) {}
20 SkScopeExit(SkScopeExit&& that) : fFn(std::move(that.fFn)) {}
22 ~SkScopeExit() {
30 SkScopeExit& operator=(SkScopeExit&& that) {
38 SkScopeExit( const SkScopeExit& ) = delete
    [all...]
  /external/skia/tools/gpu/
TestContext.cpp 40 SkScopeExit TestContext::makeCurrentAndAutoRestore() const {
41 auto asr = SkScopeExit(this->onPlatformGetAutoContextRestore());
TestContext.h 16 #include "SkScopeExit.h"
60 SkScopeExit SK_WARN_UNUSED_RESULT makeCurrentAndAutoRestore() const;
GrContextFactory.cpp 60 SkScopeExit restore(nullptr);
101 SkScopeExit restore(nullptr);
  /external/skqp/tools/gpu/
TestContext.cpp 40 SkScopeExit TestContext::makeCurrentAndAutoRestore() const {
41 auto asr = SkScopeExit(this->onPlatformGetAutoContextRestore());
TestContext.h 16 #include "SkScopeExit.h"
60 SkScopeExit SK_WARN_UNUSED_RESULT makeCurrentAndAutoRestore() const;
GrContextFactory.cpp 60 SkScopeExit restore(nullptr);
101 SkScopeExit restore(nullptr);
  /external/skia/tools/gpu/gl/mac/
CreatePlatformGLTestContext_mac.cpp 68 SkScopeExit restorer(context_restorer());
  /external/skqp/tools/gpu/gl/mac/
CreatePlatformGLTestContext_mac.cpp 68 SkScopeExit restorer(context_restorer());
  /external/skia/tools/gpu/gl/win/
CreatePlatformGLTestContext_win.cpp 133 SkScopeExit restorer(context_restorer());
  /external/skqp/tools/gpu/gl/win/
CreatePlatformGLTestContext_win.cpp 133 SkScopeExit restorer(context_restorer());
  /external/skia/tools/gpu/gl/glx/
CreatePlatformGLTestContext_glx.cpp 234 SkScopeExit restorer(context_restorer());
  /external/skqp/tools/gpu/gl/glx/
CreatePlatformGLTestContext_glx.cpp 234 SkScopeExit restorer(context_restorer());
  /external/skia/tools/gpu/gl/angle/
GLTestContext_angle.cpp 230 SkScopeExit restorer(context_restorer());
  /external/skia/tools/gpu/gl/command_buffer/
GLTestContext_command_buffer.cpp 285 SkScopeExit restorer(context_restorer());
  /external/skia/tools/gpu/gl/egl/
CreatePlatformGLTestContext_egl.cpp 191 SkScopeExit restorer(context_restorer());
  /external/skqp/src/image/
SkImage_GpuYUVA.cpp 24 #include "SkScopeExit.h"
275 SkScopeExit callDone([promiseDoneProc, textureContexts, numTextures, &proxiesCreated]() {
SkImage_Gpu.cpp 41 #include "SkScopeExit.h"
404 SkScopeExit callDone([textureDoneProc, textureContext]() { textureDoneProc(textureContext); });
  /external/skqp/tools/gpu/gl/angle/
GLTestContext_angle.cpp 230 SkScopeExit restorer(context_restorer());
  /external/skqp/tools/gpu/gl/command_buffer/
GLTestContext_command_buffer.cpp 285 SkScopeExit restorer(context_restorer());
  /external/skqp/tools/gpu/gl/egl/
CreatePlatformGLTestContext_egl.cpp 191 SkScopeExit restorer(context_restorer());
  /external/skia/src/image/
SkImage_GpuYUVA.cpp 26 #include "SkScopeExit.h"
296 SkScopeExit callDone([promiseDoneProc, textureContexts, numTextures, &proxiesCreated]() {
SkImage_Gpu.cpp 46 #include "SkScopeExit.h"
415 SkScopeExit callDone([textureDoneProc, textureContext]() { textureDoneProc(textureContext); });
    [all...]
  /external/skia/tests/
SurfaceTest.cpp 204 SkScopeExit freeTex([&backendTex, gpu] {gpu->deleteTestingOnlyBackendTexture(backendTex);});
    [all...]

Completed in 507 milliseconds

1 2