Searched refs:facing (Results 1 - 25 of 51) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebSourceInfo.cpp43 WebSourceInfo::VideoFacingMode facing() const { return m_facing; } function in class:blink::FINAL
54 PassRefPtr<WebSourceInfoPrivate> WebSourceInfoPrivate::create(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing) argument
56 return adoptRef(new WebSourceInfoPrivate(id, kind, label, facing));
59 WebSourceInfoPrivate::WebSourceInfoPrivate(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing) argument
63 , m_facing(facing)
77 void WebSourceInfo::initialize(const WebString& id, WebSourceInfo::SourceKind kind, const WebString& label, WebSourceInfo::VideoFacingMode facing) argument
79 m_private = WebSourceInfoPrivate::create(id, kind, label, facing);
100 WebSourceInfo::VideoFacingMode WebSourceInfo::facing() const function in class:blink::WebSourceInfo
103 return m_private->facing();
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DSourceInfo.idl32 readonly attribute DOMString facing;
H A DSourceInfo.cpp70 String SourceInfo::facing() const function in class:WebCore::SourceInfo
72 switch (m_webSourceInfo.facing()) {
H A DSourceInfo.h44 String facing() const;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_quad.h66 unsigned facing:1; /**< Front (0) or back (1) facing? */ member in struct:quad_header_input
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad.h66 unsigned facing:1; /**< Front (0) or back (1) facing? */ member in struct:quad_header_input
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
H A Dt_dd_tritmp.h121 GLuint facing = 0; local
140 facing = AREA_IS_CCW( cc ) ^ ctx->Polygon._FrontBit;
143 if (facing) {
158 if (DO_TWOSIDE && facing == 1) {
266 SETUP_STENCIL(facing);
268 UNSET_STENCIL(facing);
279 SETUP_STENCIL(facing);
281 UNSET_STENCIL(facing);
295 SETUP_STENCIL(facing);
297 UNSET_STENCIL(facing);
347 GLuint facing = 0; local
[all...]
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_tritmp.h121 GLuint facing = 0; local
140 facing = AREA_IS_CCW( cc ) ^ ctx->Polygon._FrontBit;
143 if (facing) {
158 if (DO_TWOSIDE && facing == 1) {
266 SETUP_STENCIL(facing);
268 UNSET_STENCIL(facing);
279 SETUP_STENCIL(facing);
281 UNSET_STENCIL(facing);
295 SETUP_STENCIL(facing);
297 UNSET_STENCIL(facing);
347 GLuint facing = 0; local
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebSourceInfo.h71 BLINK_PLATFORM_EXPORT VideoFacingMode facing() const;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_bld_depth.h67 LLVMValueRef facing,
H A Dlp_jit.h150 uint32_t facing,
H A Dlp_state_setup.c66 LLVMValueRef facing; /* boolean */ member in struct:lp_setup_args
172 * Setup the fragment input attribute with the front-facing value.
173 * \param frontface is the triangle front facing?
182 LLVMValueRef a0_0 = args->facing;
185 LLVMValueRef a0 = vec4f(gallivm, a0_0f, zero, zero, zero, "facing");
218 LLVMValueRef facing = args->facing; local
219 LLVMValueRef front_facing = LLVMBuildICmp(b, LLVMIntEQ, facing, lp_build_const_int32(gallivm, 0), ""); /** need i1 for if condition */
715 arg_types[3] = LLVMInt32TypeInContext(gallivm->context); /* facing */
732 args.facing
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_bld_depth.h67 LLVMValueRef facing,
H A Dlp_jit.h150 uint32_t facing,
H A Dlp_state_setup.c66 LLVMValueRef facing; /* boolean */ member in struct:lp_setup_args
172 * Setup the fragment input attribute with the front-facing value.
173 * \param frontface is the triangle front facing?
182 LLVMValueRef a0_0 = args->facing;
185 LLVMValueRef a0 = vec4f(gallivm, a0_0f, zero, zero, zero, "facing");
218 LLVMValueRef facing = args->facing; local
219 LLVMValueRef front_facing = LLVMBuildICmp(b, LLVMIntEQ, facing, lp_build_const_int32(gallivm, 0), ""); /** need i1 for if condition */
715 arg_types[3] = LLVMInt32TypeInContext(gallivm->context); /* facing */
732 args.facing
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/
H A Dss_tritmp.h31 * facing, compute polygon offset and handle glPolygonMode().
42 GLuint facing = 0; local
61 facing = (cc < 0.0) ^ ctx->Polygon._FrontBit;
64 mode = facing ? ctx->Polygon.BackMode : ctx->Polygon.FrontMode;
66 if (facing == 1) {
162 _swsetup_render_tri(ctx, e0, e1, e2, facing, _swsetup_edge_render_point_tri);
169 _swsetup_render_tri(ctx, e0, e1, e2, facing, _swsetup_edge_render_line_tri);
189 if (facing == 1) {
H A Dss_triangle.c112 GLuint facing,
125 if (facing == 1 && ctx->Polygon.CullFaceMode != GL_FRONT)
127 if (facing == 0 && ctx->Polygon.CullFaceMode != GL_BACK)
131 _swrast_SetFacing(ctx, facing);
108 _swsetup_render_tri(struct gl_context *ctx, GLuint e0, GLuint e1, GLuint e2, GLuint facing, swsetup_edge_render_prim_tri render) argument
/external/mesa3d/src/mesa/swrast_setup/
H A Dss_tritmp.h31 * facing, compute polygon offset and handle glPolygonMode().
42 GLuint facing = 0; local
61 facing = (cc < 0.0) ^ ctx->Polygon._FrontBit;
64 mode = facing ? ctx->Polygon.BackMode : ctx->Polygon.FrontMode;
66 if (facing == 1) {
162 _swsetup_render_tri(ctx, e0, e1, e2, facing, _swsetup_edge_render_point_tri);
169 _swsetup_render_tri(ctx, e0, e1, e2, facing, _swsetup_edge_render_line_tri);
189 if (facing == 1) {
H A Dss_triangle.c112 GLuint facing,
125 if (facing == 1 && ctx->Polygon.CullFaceMode != GL_FRONT)
127 if (facing == 0 && ctx->Polygon.CullFaceMode != GL_BACK)
131 _swrast_SetFacing(ctx, facing);
108 _swsetup_render_tri(struct gl_context *ctx, GLuint e0, GLuint e1, GLuint e2, GLuint facing, swsetup_edge_render_prim_tri render) argument
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_span.h126 /** 0 = front-facing span, 1 = back-facing span (for two-sided stencil) */
127 GLuint facing; member in struct:sw_span
181 (S).facing = 0; \
H A Ds_points.c107 span.facing = swrast->PointLineFacing;
280 span.facing = swrast->PointLineFacing;
383 span.facing = swrast->PointLineFacing;
480 span->facing != swrast->PointLineFacing) {
489 span->facing = swrast->PointLineFacing;
/external/mesa3d/src/mesa/swrast/
H A Ds_span.h126 /** 0 = front-facing span, 1 = back-facing span (for two-sided stencil) */
127 GLuint facing; member in struct:sw_span
181 (S).facing = 0; \
H A Ds_points.c107 span.facing = swrast->PointLineFacing;
280 span.facing = swrast->PointLineFacing;
383 span.facing = swrast->PointLineFacing;
480 span->facing != swrast->PointLineFacing) {
489 span->facing = swrast->PointLineFacing;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCamera.java105 cameraInfo.facing = foundCam.facing;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCameraTest.java188 assertThat(cameraQuery.facing, equalTo(Camera.CameraInfo.CAMERA_FACING_BACK));
200 assertThat( cameraQuery.facing, equalTo(Camera.CameraInfo.CAMERA_FACING_BACK) );
203 assertThat( cameraQuery.facing, equalTo(Camera.CameraInfo.CAMERA_FACING_FRONT) );
209 frontCamera.facing = Camera.CameraInfo.CAMERA_FACING_BACK;
216 backCamera.facing = Camera.CameraInfo.CAMERA_FACING_FRONT;

Completed in 1051 milliseconds

123