Home
last modified time | relevance | path

Searched refs:facing (Results 1 – 25 of 63) sorted by relevance

123

/external/mesa3d/src/mesa/tnl_dd/
Dt_dd_tritmp.h121 GLuint facing = 0; in TAG() local
140 facing = AREA_IS_CCW( cc ) ^ ctx->Polygon._FrontBit; in TAG()
143 if (facing) { in TAG()
158 if (DO_TWOSIDE && facing == 1) { in TAG()
266 SETUP_STENCIL(facing); in TAG()
268 UNSET_STENCIL(facing); in TAG()
279 SETUP_STENCIL(facing); in TAG()
281 UNSET_STENCIL(facing); in TAG()
295 SETUP_STENCIL(facing); in TAG()
297 UNSET_STENCIL(facing); in TAG()
[all …]
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DCameraEnumerationAndroid.java140 String facing = in getDeviceName() local
141 (info.facing == android.hardware.Camera.CameraInfo.CAMERA_FACING_FRONT) ? "front" : "back"; in getDeviceName()
142 return "Camera " + index + ", Facing " + facing in getDeviceName()
213 private static String getNameOfDevice(int facing) {
218 if (info.facing == facing) {
DVideoCapturerAndroid.java271 info.facing == android.hardware.Camera.CameraInfo.CAMERA_FACING_FRONT); in switchCamera()
664 if (info.facing == android.hardware.Camera.CameraInfo.CAMERA_FACING_BACK) { in getFrameOrientation()
712 if (info.facing == android.hardware.Camera.CameraInfo.CAMERA_FACING_FRONT) { in onTextureFrameAvailable()
/external/mesa3d/src/mesa/swrast_setup/
Dss_tritmp.h42 GLuint facing = 0; in TAG() local
61 facing = (cc < 0.0) ^ ctx->Polygon._FrontBit; in TAG()
64 mode = facing ? ctx->Polygon.BackMode : ctx->Polygon.FrontMode; in TAG()
66 if (facing == 1) { in TAG()
162 _swsetup_render_tri(ctx, e0, e1, e2, facing, _swsetup_edge_render_point_tri); in TAG()
169 _swsetup_render_tri(ctx, e0, e1, e2, facing, _swsetup_edge_render_line_tri); in TAG()
189 if (facing == 1) { in TAG()
Dss_triangle.c112 GLuint facing, in _swsetup_render_tri() argument
125 if (facing == 1 && ctx->Polygon.CullFaceMode != GL_FRONT) in _swsetup_render_tri()
127 if (facing == 0 && ctx->Polygon.CullFaceMode != GL_BACK) in _swsetup_render_tri()
131 _swrast_SetFacing(ctx, facing); in _swsetup_render_tri()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DCameraTest.java188 assertThat(cameraQuery.facing, equalTo(Camera.CameraInfo.CAMERA_FACING_BACK)); in testCameraInfoBackOnly()
200 assertThat( cameraQuery.facing, equalTo(Camera.CameraInfo.CAMERA_FACING_BACK) ); in testCameraInfoBackAndFront()
203 assertThat( cameraQuery.facing, equalTo(Camera.CameraInfo.CAMERA_FACING_FRONT) ); in testCameraInfoBackAndFront()
209 frontCamera.facing = Camera.CameraInfo.CAMERA_FACING_BACK; in addBackCamera()
216 backCamera.facing = Camera.CameraInfo.CAMERA_FACING_FRONT; in addFrontCamera()
/external/kernel-headers/modified/scsi/
DREADME.TXT4 Currently this includes scsi/scsi.h from 3.18, which mixes userspace-facing
5 and kernel-facing definitions even after the uapi cleanup.
/external/kernel-headers/modified/
DREADME.TXT4 Currently this includes scsi/scsi.h from 3.18, which mixes userspace-facing
5 and kernel-facing definitions even after the uapi cleanup.
/external/clang/test/Analysis/
Dlocalization-aggressive.m89 …[testLabel setText:bar]; // expected-warning {{User-facing text should use localized string macro}}
99 …[bar drawAtPoint:CGPointMake(0, 0) withAttributes:nil]; // expected-warning {{User-facing text sho…
148 …[testLabel setText:@"Hello"]; // expected-warning {{User-facing text should use localized string m…
187 …[testLabel setText:argumentString]; // expected-warning {{User-facing text should use localized st…
198 …alizationTestSuite unLocalizedStringMethod]]; // expected-warning {{User-facing text should use lo…
215 [s setToolTip:bar]; // expected-warning {{User-facing text should use localized string macro}}
221 …[testLabel setAccessibilityLabel:@"UnlocalizedString"]; // expected-warning {{User-facing text sho…
Dlocalization.m68 …tText:bar]; // expected-warning {{User-facing text should use localized string macro}} expected-no…
83 …tText:bar]; // expected-warning {{User-facing text should use localized string macro}} expected-no…
109 // Suppress diagnostic about user-facing string constants when the method name
232 // Suppress diagnostic about user-facing string constants when the class name
/external/mesa3d/src/gallium/docs/source/cso/
Drasterizer.rst89 If set, there are per-vertex back-facing colors. The hardware
98 Indicates whether the window order of front-facing polygons is
103 (cull no polygons), PIPE_FACE_FRONT (cull front-facing polygons),
104 PIPE_FACE_BACK (cull back-facing polygons), or
108 Indicates how to fill front-facing polygons, either
112 Indicates how to fill back-facing polygons, either
Dvelems.rst30 Fog, point size, the facing bit, and edgeflags, all are in the standard format
42 Colors, both front- and back-facing, may omit the alpha component, only using
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowCamera.java105 cameraInfo.facing = foundCam.facing; in getCameraInfo()
/external/mesa3d/src/mesa/swrast/
Ds_span.h127 GLuint facing; member
181 (S).facing = 0; \
Ds_points.c107 span.facing = swrast->PointLineFacing; in sprite_point()
280 span.facing = swrast->PointLineFacing; in smooth_point()
383 span.facing = swrast->PointLineFacing; in large_point()
480 span->facing != swrast->PointLineFacing) { in pixel_point()
489 span->facing = swrast->PointLineFacing; in pixel_point()
Dswrast.h175 _swrast_SetFacing(struct gl_context *ctx, GLuint facing);
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_quad.h66 unsigned facing:1; /**< Front (0) or back (1) facing? */ member
Dsp_setup.c92 int facing; member
237 setup->quad[q].input.facing = setup->facing; in flush_spans()
381 setup->facing = in setup_sort_vertices()
386 unsigned face = setup->facing == 0 ? PIPE_FACE_FRONT : PIPE_FACE_BACK; in setup_sort_vertices()
667 setup->coef[fragSlot].a0[0] = setup->facing * -2.0f + 1.0f; in setup_tri_coefficients()
1021 setup->coef[fragSlot].a0[0] = setup->facing * -2.0f + 1.0f; in setup_line_coefficients()
1268 setup->coef[fragSlot].a0[0] = setup->facing * -2.0f + 1.0f; in sp_setup_point()
Dsp_fs_exec.c128 machine->Face = (float) (quad->input.facing * -2 + 1); in exec_run()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_state_fs.c229 LLVMValueRef facing, in generate_fs() argument
329 depth_ptr, facing, in generate_fs()
386 depth_ptr, facing, in generate_fs()
455 LLVMValueRef facing, in generate_fs_loop() argument
568 depth_ptr_i, facing, in generate_fs_loop()
625 depth_ptr_i, facing, in generate_fs_loop()
796 LLVMValueRef facing; in generate_fragment() local
889 facing = LLVMGetParam(function, 3); in generate_fragment()
962 facing, in generate_fragment()
1023 facing, in generate_fragment()
Dlp_state_setup.c66 LLVMValueRef facing; /* boolean */ member
182 LLVMValueRef a0_0 = args->facing; in emit_facing_coef()
218 LLVMValueRef facing = args->facing; in lp_twoside() local
219 …LLVMValueRef front_facing = LLVMBuildICmp(b, LLVMIntEQ, facing, lp_build_const_int32(gallivm, 0), … in lp_twoside()
732 args.facing = LLVMGetParam(variant->function, 3); in generate_setup_variant()
740 lp_build_name(args.facing, "in_facing"); in generate_setup_variant()
Dlp_bld_depth.h67 LLVMValueRef facing,
Dlp_jit.h150 uint32_t facing,
/external/autotest/client/site_tests/security_NetworkListeners/
Dcontrol11 PURPOSE = "To maintain a minimal set of network-facing attack surface"
/external/flatbuffers/docs/source/
DGoApi.md25 non-user facing documentation from this file. -->

123