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

1 2

  /external/mesa3d/src/gallium/auxiliary/util/
u_viewport.h 40 float *zmin, float *zmax)
51 *zmin = a < b ? a : b;
  /external/mesa3d/src/mesa/main/
depth.c 123 _mesa_DepthBoundsEXT( GLclampd zmin, GLclampd zmax )
128 _mesa_debug(ctx, "glDepthBounds(%f, %f)\n", zmin, zmax);
130 if (zmin > zmax) {
131 _mesa_error(ctx, GL_INVALID_VALUE, "glDepthBoundsEXT(zmin > zmax)");
135 zmin = CLAMP(zmin, 0.0, 1.0);
138 if (ctx->Depth.BoundsMin == zmin && ctx->Depth.BoundsMax == zmax)
142 ctx->Depth.BoundsMin = (GLfloat) zmin;
depth.h 53 _mesa_DepthBoundsEXT( GLclampd zmin, GLclampd zmax );
feedback.c 239 GLuint zmin, zmax, zscale = (~0u); local
245 zmin = (GLuint) ((GLfloat) zscale * ctx->Select.HitMinZ);
249 write_record( ctx, zmin );
dlist.c     [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
r600_viewport.c 331 float zmin, zmax; local
338 util_viewport_zmin_zmax(&states[0], rctx->clip_halfz, &zmin, &zmax);
341 radeon_emit(cs, fui(zmin));
355 util_viewport_zmin_zmax(&states[i], rctx->clip_halfz, &zmin, &zmax);
356 radeon_emit(cs, fui(zmin));
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_emit.c 652 float zmin, zmax; local
660 &zmin, &zmax);
664 OUT_RING(ring, fui(zmin));
667 OUT_RING(ring, (uint32_t)(zmin * 0xffff));
670 OUT_RING(ring, (uint32_t)(zmin * 0xffffff));
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_framebuffer.c 544 * less than zmin. Detect that case, flip the depth range and
555 /* If zmin is less than 0, clamp zmin to 0 and adjust the prescale.
556 * zmin can be set to -1 when viewport->scale[2] is set to 1 and
647 if (svga->state.hw_clear.depthrange.zmin != range_min ||
658 svga->state.hw_clear.depthrange.zmin = range_min;
677 svga->state.hw_clear.depthrange.zmin = range_min;
svga_context.h 321 float zmin, zmax; member in struct:svga_hw_clear_state::__anon30098
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_emit.c 678 float zmin, zmax; local
686 &zmin, &zmax);
690 OUT_RING(ring, (uint32_t)(zmin * 0xffffffff));
693 OUT_RING(ring, (uint32_t)(zmin * 0xffff));
696 OUT_RING(ring, (uint32_t)(zmin * 0xffffff));
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_state_validate.c 250 float zmin, zmax; local
273 util_viewport_zmin_zmax(vpt, nv50->rast->pipe.clip_halfz, &zmin, &zmax);
277 PUSH_DATAf(push, zmin);
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_state_validate.c 303 float zmin, zmax; local
337 util_viewport_zmin_zmax(vp, nvc0->rast->pipe.clip_halfz, &zmin, &zmax);
340 PUSH_DATAf(push, zmin);
  /external/mesa3d/src/amd/vulkan/
si_cmd_buffer.c 493 float zmin = MIN2(viewports[i].minDepth, viewports[i].maxDepth); local
495 radeon_emit(cs, fui(zmin));
    [all...]
  /external/deqp/framework/platform/null/
tcuNullRenderContextFuncs.inl     [all...]
  /external/deqp/framework/opengl/wrapper/
glwImpl.inl     [all...]
glwApi.inl     [all...]
glwFunctionTypes.inl 156 typedef GLW_APICALL void (GLW_APIENTRY* glDepthBoundsEXTFunc) (GLclampd zmin, GLclampd zmax);
    [all...]
  /external/deqp/framework/opengl/
gluCallLogWrapper.inl     [all...]
gluCallLogWrapperApi.inl 156 void glDepthBoundsEXT (glw::GLclampd zmin, glw::GLclampd zmax);
    [all...]
  /external/mesa3d/include/GL/
glext.h     [all...]
  /external/swiftshader/include/GL/
glext.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/GL/
glext.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/GL/
glext.h     [all...]
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_opengl.h     [all...]
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_opengl.h     [all...]

Completed in 1535 milliseconds

1 2