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

1 2

  /external/skia/tools/gpu/
FenceSync.h 23 class FenceSync {
29 virtual ~FenceSync() {}
TestContext.h 12 #include "FenceSync.h"
31 FenceSync* fenceSync() { SkASSERT(fFenceSync); return fFenceSync.get(); }
84 std::unique_ptr<FenceSync> fFenceSync;
  /external/swiftshader/src/OpenGL/libEGL/
Sync.hpp 27 class FenceSync
30 explicit FenceSync(Context *context) : context(context)
36 ~FenceSync()
Display.h 54 void destroySync(FenceSync *sync);
62 bool isValidSync(FenceSync *sync);
89 typedef std::set<FenceSync*> SyncSet;
Display.cpp 468 FenceSync *fenceSync = new egl::FenceSync(context);
470 mSyncSet.insert(fenceSync);
471 return fenceSync;
503 void Display::destroySync(FenceSync *sync)
581 bool Display::isValidSync(FenceSync *sync)
libEGL.cpp 1129 FenceSync *eglSync = static_cast<FenceSync*>(sync);
1151 FenceSync *eglSync = static_cast<FenceSync*>(sync);
1179 FenceSync *eglSync = static_cast<FenceSync*>(sync);
  /external/swiftshader/src/OpenGL/libGLESv2/
Fence.cpp 118 FenceSync::FenceSync(GLuint name, GLenum condition, GLbitfield flags) : NamedObject(name), mCondition(condition), mFlags(flags)
122 FenceSync::~FenceSync()
126 GLenum FenceSync::clientWait(GLbitfield flags, GLuint64 timeout)
131 void FenceSync::serverWait(GLbitfield flags, GLuint64 timeout)
Fence.h 44 class FenceSync : public gl::NamedObject
47 FenceSync(GLuint name, GLenum condition, GLbitfield flags);
48 virtual ~FenceSync();
ResourceManager.h 35 class FenceSync;
72 void deleteFenceSync(GLuint fenceSync);
80 FenceSync *getFenceSync(GLuint handle);
99 gl::NameSpace<FenceSync> mFenceSyncNameSpace;
ResourceManager.cpp 143 FenceSync *fenceSync = new FenceSync(name, condition, flags);
144 fenceSync->addRef();
146 mFenceSyncNameSpace.insert(name, fenceSync);
229 void ResourceManager::deleteFenceSync(GLuint fenceSync)
231 FenceSync *fenceObject = mFenceSyncNameSpace.remove(fenceSync);
269 FenceSync *ResourceManager::getFenceSync(unsigned int handle)
Context.h 69 class FenceSync;
556 void deleteFenceSync(GLsync fenceSync);
615 FenceSync *getFenceSync(GLsync handle) const;
libGLESv3.cpp     [all...]
  /external/skia/tools/gpu/gl/
GLTestContext.h 84 void init(const GrGLInterface *, std::unique_ptr<FenceSync> = nullptr);
GLTestContext.cpp 15 class GLFenceSync : public sk_gpu_test::FenceSync {
43 typedef FenceSync INHERITED;
228 void GLTestContext::init(const GrGLInterface* gl, std::unique_ptr<FenceSync> fenceSync) {
231 fFenceSync = fenceSync ? std::move(fenceSync) : GLFenceSync::MakeIfSupported(this);
  /external/skia/tools/gpu/vk/
VkTestContext.cpp 18 * Implements sk_gpu_test::FenceSync for Vulkan. It creates a single command
22 class VkFenceSync : public sk_gpu_test::FenceSync {
103 typedef sk_gpu_test::FenceSync INHERITED;
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_syncobj.c 128 functions->FenceSync = intel_fence_sync;
  /external/skia/tools/skpbench/
skpbench.cpp 73 GpuSync(const sk_gpu_test::FenceSync* fenceSync);
81 const sk_gpu_test::FenceSync* const fFenceSync;
100 static void run_benchmark(const sk_gpu_test::FenceSync* fenceSync, SkCanvas* canvas,
107 GpuSync gpuSync(fenceSync);
132 const sk_gpu_test::FenceSync* fenceSync, SkCanvas* canvas,
145 GpuSync gpuSync(fenceSync);
325 run_benchmark(testCtx->fenceSync(), canvas, skp.get(), &samples)
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_syncobj.c 117 functions->FenceSync = st_fence_sync;
  /external/mesa3d/src/mesa/main/
syncobj.c 132 driver->FenceSync = _mesa_fence_sync;
285 ctx->Driver.FenceSync(ctx, syncObj, condition, flags);
dd.h 765 void (*FenceSync)(struct gl_context *, struct gl_sync_object *, GLenum, GLbitfield);
    [all...]
  /external/skia/tools/gpu/gl/egl/
CreatePlatformGLTestContext_egl.cpp 23 class EGLFenceSync : public sk_gpu_test::FenceSync {
36 typedef sk_gpu_test::FenceSync INHERITED;
  /external/deqp/modules/egl/
teglGLES2SharingThreadedTests.cpp 253 class FenceSync
256 FenceSync (void);
257 ~FenceSync (void);
272 FenceSync::FenceSync (void)
280 FenceSync::~FenceSync (void)
284 void FenceSync::addWaiter (void)
291 void FenceSync::init (EGLThread& thread, bool serverSync)
308 bool FenceSync::waitReady (EGLThread& thread
    [all...]
  /external/skia/src/gpu/gl/
GrGLAssembleInterface.cpp 531 GET_PROC(FenceSync);
    [all...]
  /external/mesa3d/src/mapi/glapi/tests/
check_table.cpp     [all...]
  /external/libmojo/mojo/gpu/
mojo_gles2_impl_autogen.h 190 GLsync FenceSync(GLenum condition, GLbitfield flags) override;
    [all...]

Completed in 318 milliseconds

1 2