Home
last modified time | relevance | path

Searched refs:numSemaphores (Results 1 – 25 of 43) sorted by relevance

12

/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesQueueBindSparseTests.cpp208 deUint32 numSemaphores = m_params.numWaitSemaphores; in iterate() local
210 while (numSemaphores > 0u && numQueues > 0u) in iterate()
216 sparseQueue, 0u, DE_NULL, DE_NULL, numSemaphores, getDataOrNullptr(waitSemaphores))); in iterate()
217 numSemaphores = 0u; in iterate()
223 …es[numQueues - 2], 0u, DE_NULL, DE_NULL, 1u, getDataOrNullptr(waitSemaphores, numSemaphores - 1))); in iterate()
225 --numSemaphores; in iterate()
246 deUint32 numSemaphores = m_params.numSignalSemaphores; in iterate() local
248 while (numSemaphores > 0u && numQueues > 0u) in iterate()
253 …sparseQueue, numSemaphores, getDataOrNullptr(signalSemaphores), getDataOrNullptr(signalSemaphoresW… in iterate()
254 numSemaphores = 0u; in iterate()
[all …]
/external/skia/src/image/
DSkSurface.cpp252 int numSemaphores, GrBackendSemaphore signalSemaphores[], in flush() argument
255 return asSB(this)->onFlush(access, flags, numSemaphores, signalSemaphores, finishedProc, in flush()
260 int numSemaphores, GrBackendSemaphore signalSemaphores[]) { in flush() argument
262 return this->flush(access, grFlags, numSemaphores, signalSemaphores); in flush()
265 GrSemaphoresSubmitted SkSurface::flushAndSignalSemaphores(int numSemaphores, in flushAndSignalSemaphores() argument
268 numSemaphores, signalSemaphores, nullptr, nullptr); in flushAndSignalSemaphores()
271 bool SkSurface::wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in wait() argument
272 return asSB(this)->onWait(numSemaphores, waitSemaphores); in wait()
DSkSurface_Gpu.h36 int numSemaphores,
40 bool onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) override;
DSkSurface_Base.h84 int numSemaphores, in onFlush() argument
96 virtual bool onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in onWait() argument
DSkSurface_Gpu.cpp162 int numSemaphores, in onFlush() argument
166 return fDevice->flush(access, flags, numSemaphores, signalSemaphores, finishedProc, in onFlush()
170 bool SkSurface_Gpu::onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in onWait() argument
171 return fDevice->wait(numSemaphores, waitSemaphores); in onWait()
/external/skia/include/gpu/
DGrContext.h253 bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores);
286 GrSemaphoresSubmitted flush(GrFlushFlags flags, int numSemaphores,
294 GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores, in flushAndSignalSemaphores() argument
296 return this->flush(kNone_GrFlushFlags, numSemaphores, signalSemaphores); in flushAndSignalSemaphores()
/external/skia/include/core/
DSkSurface.h773 int numSemaphores, GrBackendSemaphore signalSemaphores[],
785 int numSemaphores, GrBackendSemaphore signalSemaphores[]);
789 GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores,
802 bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores);
/external/skia/src/gpu/
DGrContext.cpp235 bool GrContext::wait(int numSemaphores, const GrBackendSemaphore waitSemaphores[]) { in wait() argument
239 for (int i = 0; i < numSemaphores; ++i) { in wait()
259 GrSemaphoresSubmitted GrContext::flush(GrFlushFlags flags, int numSemaphores, in flush() argument
269 flags, numSemaphores, signalSemaphores, finishedProc, in flush()
DGrDrawingManager.h78 int numSemaphores,
157 int numSemaphores,
DGrDrawingManager.cpp202 int numSemaphores, in flush() argument
348 GrSemaphoresSubmitted result = gpu->finishFlush(proxy, access, flags, numSemaphores, in flush()
479 int numSemaphores, GrBackendSemaphore backendSemaphores[], in prepareSurfaceForExternalIO() argument
501 if (proxy->priv().hasPendingIO() || numSemaphores || finishedProc || in prepareSurfaceForExternalIO()
503 result = this->flush(proxy, access, flags, numSemaphores, backendSemaphores, in prepareSurfaceForExternalIO()
DSkGpuDevice.h123 int numSemaphores,
127 bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores);
DGrGpu.cpp401 GrFlushFlags flags, int numSemaphores, in finishFlush() argument
409 for (int i = 0; i < numSemaphores; ++i) { in finishFlush()
426 (numSemaphores > 0 && this->caps()->fenceSyncSupport()), in finishFlush()
/external/skqp/src/image/
DSkSurface_Gpu.h35 GrSemaphoresSubmitted onFlush(int numSemaphores,
37 bool onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) override;
DSkSurface.cpp250 GrSemaphoresSubmitted SkSurface::flushAndSignalSemaphores(int numSemaphores, in flushAndSignalSemaphores() argument
252 return asSB(this)->onFlush(numSemaphores, signalSemaphores); in flushAndSignalSemaphores()
255 bool SkSurface::wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in wait() argument
256 return asSB(this)->onWait(numSemaphores, waitSemaphores); in wait()
DSkSurface_Base.h83 virtual GrSemaphoresSubmitted onFlush(int numSemaphores, in onFlush() argument
93 virtual bool onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in onWait() argument
DSkSurface_Gpu.cpp156 GrSemaphoresSubmitted SkSurface_Gpu::onFlush(int numSemaphores, in onFlush() argument
158 return fDevice->flushAndSignalSemaphores(numSemaphores, signalSemaphores); in onFlush()
161 bool SkSurface_Gpu::onWait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { in onWait() argument
162 return fDevice->wait(numSemaphores, waitSemaphores); in onWait()
/external/skqp/src/gpu/vk/
DGrVkSecondaryCBDrawContext.cpp64 bool GrVkSecondaryCBDrawContext::wait(int numSemaphores, in wait() argument
66 return fDevice->wait(numSemaphores, waitSemaphores); in wait()
DGrVkSecondaryCBDrawContext.h84 bool wait(int numSemaphores, const GrBackendSemaphore waitSemaphores[]);
/external/skqp/src/gpu/
DGrDrawingManager.cpp209 int numSemaphores, in flush() argument
335 GrSemaphoresSubmitted result = gpu->finishFlush(numSemaphores, backendSemaphores); in flush()
451 GrSurfaceProxy* proxy, int numSemaphores, GrBackendSemaphore backendSemaphores[]) { in prepareSurfaceForExternalIO() argument
464 if (proxy->priv().hasPendingIO() || numSemaphores) { in prepareSurfaceForExternalIO()
465 result = this->flush(proxy, numSemaphores, backendSemaphores); in prepareSurfaceForExternalIO()
DGrDrawingManager.h76 int numSemaphores,
146 int numSemaphores = 0,
DGrGpu.cpp378 GrSemaphoresSubmitted GrGpu::finishFlush(int numSemaphores, in finishFlush() argument
384 for (int i = 0; i < numSemaphores; ++i) { in finishFlush()
400 this->onFinishFlush((numSemaphores > 0 && this->caps()->fenceSyncSupport())); in finishFlush()
DSkGpuDevice.h123 GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores,
125 bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores);
/external/skia/src/gpu/vk/
DGrVkSecondaryCBDrawContext.cpp70 bool GrVkSecondaryCBDrawContext::wait(int numSemaphores, in wait() argument
72 return fDevice->wait(numSemaphores, waitSemaphores); in wait()
DGrVkSecondaryCBDrawContext.h85 bool wait(int numSemaphores, const GrBackendSemaphore waitSemaphores[]);
/external/skqp/include/core/
DSkSurface.h699 GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores,
712 bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores);

12