HomeSort by relevance Sort by last modified time
    Searched refs:fence (Results 201 - 225 of 509) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/5/platforms/android-5/arch-arm/usr/include/GLES2/
gl2ext.h 475 GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint fence);
476 GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint fence);
477 GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params);
478 GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint fence);
479 GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition);
483 typedef GLboolean (GL_APIENTRYP PFNGLISFENCENVPROC) (GLuint fence);
484 typedef GLboolean (GL_APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence);
485 typedef void (GL_APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params);
486 typedef void (GL_APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence);
487 typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition)
    [all...]
  /prebuilts/ndk/6/platforms/android-5/arch-arm/usr/include/GLES2/
gl2ext.h 475 GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint fence);
476 GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint fence);
477 GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params);
478 GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint fence);
479 GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition);
483 typedef GLboolean (GL_APIENTRYP PFNGLISFENCENVPROC) (GLuint fence);
484 typedef GLboolean (GL_APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence);
485 typedef void (GL_APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params);
486 typedef void (GL_APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence);
487 typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition)
    [all...]
  /prebuilts/ndk/6/platforms/android-5/arch-x86/usr/include/GLES2/
gl2ext.h 475 GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint fence);
476 GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint fence);
477 GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params);
478 GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint fence);
479 GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition);
483 typedef GLboolean (GL_APIENTRYP PFNGLISFENCENVPROC) (GLuint fence);
484 typedef GLboolean (GL_APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence);
485 typedef void (GL_APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params);
486 typedef void (GL_APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence);
487 typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup.c 75 if (setup->scene->fence) {
78 __FUNCTION__, setup->scene->fence->id);
80 lp_fence_wait(setup->scene->fence);
153 lp_fence_reference(&setup->last_fence, scene->fence);
180 assert(scene->fence == NULL);
182 /* Always create a fence:
184 scene->fence = lp_fence_create(MAX2(1, setup->num_threads));
185 if (!scene->fence)
339 struct pipe_fence_handle **fence,
344 if (fence) {
    [all...]
lp_context.c 97 struct pipe_fence_handle **fence)
99 llvmpipe_flush(pipe, fence, __FUNCTION__);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_screen.c 265 if (screen->base.fence.current) {
266 nouveau_fence_wait(screen->base.fence.current);
267 nouveau_fence_ref (NULL, &screen->base.fence.current);
280 nouveau_bo_ref(NULL, &screen->fence.bo);
306 *sequence = ++screen->base.fence.sequence;
309 PUSH_DATAh(push, screen->fence.bo->offset);
310 PUSH_DATA (push, screen->fence.bo->offset);
323 return nv50_screen(pscreen)->fence.map[0];
637 NULL, &screen->fence.bo);
639 NOUVEAU_ERR("Failed to allocate fence bo: %d\n", ret)
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup.c 75 if (setup->scene->fence) {
78 __FUNCTION__, setup->scene->fence->id);
80 lp_fence_wait(setup->scene->fence);
153 lp_fence_reference(&setup->last_fence, scene->fence);
180 assert(scene->fence == NULL);
182 /* Always create a fence:
184 scene->fence = lp_fence_create(MAX2(1, setup->num_threads));
185 if (!scene->fence)
339 struct pipe_fence_handle **fence,
344 if (fence) {
    [all...]
lp_context.c 97 struct pipe_fence_handle **fence)
99 llvmpipe_flush(pipe, fence, __FUNCTION__);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_screen.c 265 if (screen->base.fence.current) {
266 nouveau_fence_wait(screen->base.fence.current);
267 nouveau_fence_ref (NULL, &screen->base.fence.current);
280 nouveau_bo_ref(NULL, &screen->fence.bo);
306 *sequence = ++screen->base.fence.sequence;
309 PUSH_DATAh(push, screen->fence.bo->offset);
310 PUSH_DATA (push, screen->fence.bo->offset);
323 return nv50_screen(pscreen)->fence.map[0];
637 NULL, &screen->fence.bo);
639 NOUVEAU_ERR("Failed to allocate fence bo: %d\n", ret)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/
glhd_screen.c 294 struct pipe_fence_handle *fence)
301 fence);
306 struct pipe_fence_handle *fence)
312 fence);
317 struct pipe_fence_handle *fence,
324 fence,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_screen_cache.c 119 sws->fence_signalled(sws, entry->fence, 0) == 0) {
298 struct pipe_fence_handle *fence)
318 svgascreen->sws->fence_reference(svgascreen->sws, &entry->fence, fence);
354 if (cache->entries[i].fence)
356 &cache->entries[i].fence, NULL);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
tr_screen.c 323 * fence
353 struct pipe_fence_handle *fence)
362 trace_dump_arg(ptr, fence);
364 result = screen->fence_signalled(screen, fence);
376 struct pipe_fence_handle *fence,
386 trace_dump_arg(ptr, fence);
389 result = screen->fence_finish(screen, fence, timeout);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_dri2.c 59 struct pipe_fence_handle *fence; member in struct:__anon17853
192 ms->screen->fence_reference(ms->screen, &private->fence, NULL);
360 dst_priv->fence && REGION_NUM_RECTS(pRegion) == 1) {
365 ms->screen->fence_finish(ms->screen, dst_priv->fence,
367 ms->screen->fence_reference(ms->screen, &dst_priv->fence, NULL);
397 &dst_priv->fence : NULL);
  /external/mesa3d/src/gallium/drivers/galahad/
glhd_screen.c 294 struct pipe_fence_handle *fence)
301 fence);
306 struct pipe_fence_handle *fence)
312 fence);
317 struct pipe_fence_handle *fence,
324 fence,
  /external/mesa3d/src/gallium/drivers/svga/
svga_screen_cache.c 119 sws->fence_signalled(sws, entry->fence, 0) == 0) {
298 struct pipe_fence_handle *fence)
318 svgascreen->sws->fence_reference(svgascreen->sws, &entry->fence, fence);
354 if (cache->entries[i].fence)
356 &cache->entries[i].fence, NULL);
  /external/mesa3d/src/gallium/drivers/trace/
tr_screen.c 323 * fence
353 struct pipe_fence_handle *fence)
362 trace_dump_arg(ptr, fence);
364 result = screen->fence_signalled(screen, fence);
376 struct pipe_fence_handle *fence,
386 trace_dump_arg(ptr, fence);
389 result = screen->fence_finish(screen, fence, timeout);
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_dri2.c 59 struct pipe_fence_handle *fence; member in struct:__anon31412
192 ms->screen->fence_reference(ms->screen, &private->fence, NULL);
360 dst_priv->fence && REGION_NUM_RECTS(pRegion) == 1) {
365 ms->screen->fence_finish(ms->screen, dst_priv->fence,
367 ms->screen->fence_reference(ms->screen, &dst_priv->fence, NULL);
397 &dst_priv->fence : NULL);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
math_semantic_attr.js 25 * neutral fence or of a single vertical bar.
863 type: cvox.SemanticAttr.Type.FENCE,
867 type: cvox.SemanticAttr.Type.FENCE,
871 type: cvox.SemanticAttr.Type.FENCE,
875 type: cvox.SemanticAttr.Type.FENCE,
879 type: cvox.SemanticAttr.Type.FENCE,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
pb_validate.c 152 struct pipe_fence_handle *fence)
156 pb_fence(vl->entries[i].buf, fence);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_driver.c 82 { nctx->fence, NOUVEAU_BO_VRAM | NOUVEAU_BO_RDWR };
92 nouveau_bo_wait(nctx->fence, NOUVEAU_BO_RDWR, context_client(ctx));
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_validate.c 152 struct pipe_fence_handle *fence)
156 pb_fence(vl->entries[i].buf, fence);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_driver.c 82 { nctx->fence, NOUVEAU_BO_VRAM | NOUVEAU_BO_RDWR };
92 nouveau_bo_wait(nctx->fence, NOUVEAU_BO_RDWR, context_client(ctx));
  /hardware/intel/common/libwsbm/src/
wsbm_manager.h 142 struct _WsbmFenceObject *fence);
149 struct _WsbmFenceObject *fence);
  /hardware/qcom/display/msm8226/liboverlay/
overlayRotator.cpp 90 void RotMem::setReleaseFd(const int& fence) {
105 mRelFence[mCurrIndex] = fence;
  /hardware/qcom/display/msm8960/liboverlay/
overlayRotator.cpp 93 void RotMem::Mem::setReleaseFd(const int& fence) {
108 mRelFence[mCurrOffset] = fence;

Completed in 390 milliseconds

1 2 3 4 5 6 7 891011>>