HomeSort by relevance Sort by last modified time
    Searched refs:depth (Results 451 - 475 of 2204) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_api.c 142 if (vinfo->depth>=4) {
150 /* Any depth of TrueColor or DirectColor works in RGB mode */
160 * Given an XVisualInfo and RGB, Double, and Depth buffer flags, save the
309 * for depth buffer size, stencil size, accum size, etc.
320 /* Configure this visual as RGB, double-buffered, depth-buffered. */
377 get_visual( Display *dpy, int scr, unsigned int depth, int xclass )
387 temp.depth = depth;
393 if (depth==default_depth && xclass==default_class) {
405 if (vis && depth > 24 && (xclass==TrueColor || xclass==DirectColor))
433 int depth, xclass = -1; local
481 int depth; local
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
fakeglx.c 159 /* Any depth of TrueColor or DirectColor works in RGB mode */
261 * Given an XVisualInfo and RGB, Double, and Depth buffer flags, save the
406 * for depth buffer size, stencil size, accum size, etc.
423 /* Configure this visual as RGB, double-buffered, depth-buffered. */
522 get_visual( Display *dpy, int scr, unsigned int depth, int xclass )
532 temp.depth = depth;
538 if (depth==default_depth && xclass==default_class) {
550 if (vis && depth > 24 && (xclass==TrueColor || xclass==DirectColor)) {
579 int depth, xclass = -1 local
623 int depth; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_blit.c 150 double depth, unsigned stencil)
155 return util_pack_z(format, depth);
158 return util_pack_z_stencil(format, depth, stencil);
166 static uint32_t r300_hiz_clear_value(double depth)
168 uint32_t r = (uint32_t)(CLAMP(depth, 0, 1) * 255.5);
177 double depth,
264 r300_depth_clear_value(fb->zsbuf->format, depth, stencil);
271 r300->hiz_clear_value = r300_hiz_clear_value(depth);
301 buffers, cformat, color, depth, stencil);
363 /* Clear a region of a depth stencil surface. *
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_blit.c 150 double depth, unsigned stencil)
155 return util_pack_z(format, depth);
158 return util_pack_z_stencil(format, depth, stencil);
166 static uint32_t r300_hiz_clear_value(double depth)
168 uint32_t r = (uint32_t)(CLAMP(depth, 0, 1) * 255.5);
177 double depth,
264 r300_depth_clear_value(fb->zsbuf->format, depth, stencil);
271 r300->hiz_clear_value = r300_hiz_clear_value(depth);
301 buffers, cformat, color, depth, stencil);
363 /* Clear a region of a depth stencil surface. *
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_blitter.c 78 /* FS which outputs a depth from a texture,
94 /* Depth stencil alpha state. */
179 /* depth stencil alpha state objects */
184 dsa.depth.enabled = 1;
185 dsa.depth.writemask = 1;
186 dsa.depth.func = PIPE_FUNC_ALWAYS;
200 dsa.depth.enabled = 0;
201 dsa.depth.writemask = 0;
433 /* Depth, stencil, alpha. */
498 float depth)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_blitter.c 78 /* FS which outputs a depth from a texture,
94 /* Depth stencil alpha state. */
179 /* depth stencil alpha state objects */
184 dsa.depth.enabled = 1;
185 dsa.depth.writemask = 1;
186 dsa.depth.func = PIPE_FUNC_ALWAYS;
200 dsa.depth.enabled = 0;
201 dsa.depth.writemask = 0;
433 /* Depth, stencil, alpha. */
498 float depth)
    [all...]
  /art/runtime/jdwp/
jdwp_event.h 78 int depth; /* JdwpStepDepth */ member in struct:art::JDWP::JdwpEventMod::__anon41
  /dalvik/vm/interp/
Interp.h 64 bool dvmAddSingleStep(Thread* thread, int size, int depth);
  /dalvik/vm/jdwp/
JdwpEvent.h 73 int depth; /* JdwpStepDepth */ member in struct:JdwpEventMod::__anon895
  /developers/build/prebuilts/gradle/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 239 * Skips tags the parser isn't interested in. Uses depth to handle nested tags. i.e.,
241 * finds the matching END_TAG (as indicated by the value of "depth" being 0).
247 int depth = 1; local
248 while (depth != 0) {
251 depth--;
254 depth++;
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 239 * Skips tags the parser isn't interested in. Uses depth to handle nested tags. i.e.,
241 * finds the matching END_TAG (as indicated by the value of "depth" being 0).
247 int depth = 1; local
248 while (depth != 0) {
251 depth--;
254 depth++;
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/
FeedParser.java 239 * Skips tags the parser isn't interested in. Uses depth to handle nested tags. i.e.,
241 * finds the matching END_TAG (as indicated by the value of "depth" being 0).
247 int depth = 1; local
248 while (depth != 0) {
251 depth--;
254 depth++;
  /external/chromium_org/build/android/
envsetup.sh 142 "${CHROME_SRC}/build/gyp_chromium" --depth="${CHROME_SRC}" --check "$@"
  /external/chromium_org/cc/animation/
transform_operations.h 73 void AppendPerspective(SkMScalar depth);
  /external/chromium_org/content/browser/renderer_host/
backing_store_gtk.h 29 // describing the format of the target window and the depth is the color
30 // depth of the X window which will be drawn into.
34 int depth);
87 // If |use_render_| is false, this is the number of bits-per-pixel for |depth|
91 // This is the depth of the target window.
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCalculationValue.cpp 564 static ParseState checkDepthAndIndex(int* depth, unsigned index, CSSParserValueList* tokens)
566 (*depth)++;
567 if (*depth > maxExpressionDepth)
619 bool parseValueTerm(CSSParserValueList* tokens, int depth, unsigned* index, Value* result)
621 if (checkDepthAndIndex(&depth, *index, tokens) != OK)
626 if (!parseValueExpression(tokens, depth, &currentIndex, result))
638 bool parseValueMultiplicativeExpression(CSSParserValueList* tokens, int depth, unsigned* index, Value* result)
640 if (checkDepthAndIndex(&depth, *index, tokens) != OK)
643 if (!parseValueTerm(tokens, depth, index, result))
653 if (!parseValueTerm(tokens, depth, index, &rhs)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformScreen.cpp 56 return hostWindow->screenInfo().depth;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_fs.h 52 struct pipe_depth_state depth; member in struct:lp_fragment_shader_variant_key
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_resource.h 15 uint16_t depth; member in struct:nv30_surface
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_surface.h 84 unsigned width, unsigned height, unsigned depth);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xmesa_x.h 81 #define GET_VISUAL_DEPTH(__v) __v->visinfo->depth
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_fragprog.c 248 /* Store result depth/z */
250 const GLfloat depth = machine->Outputs[FRAG_RESULT_DEPTH][2]; local
251 if (depth <= 0.0)
253 else if (depth >= 1.0)
257 (GLuint) (depth * ctx->DrawBuffer->_DepthMaxF + 0.5F);
  /external/chromium_org/tools/idl_parser/
idl_node.py 44 self.depth = 0
133 search.depth += 1
136 search.depth -= 1
148 tab = ''.rjust(self.depth * 2)
  /external/chromium_org/ui/gfx/
gtk_compat.h 63 return visual->depth;
  /external/chromium_org/ui/message_center/views/
message_center_view_unittest.cc 116 void LogBounds(int depth, views::View* view);
243 void MessageCenterViewTest::LogBounds(int depth, views::View* view) {
245 for (int i = 0; i < depth; ++i)
251 LogBounds(depth + 1, view->child_at(i));

Completed in 772 milliseconds

<<11121314151617181920>>