Searched defs:blend (Results 201 - 223 of 223) sorted by relevance

123456789

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Drenderer.c382 * Set renderer blend state. Blending is disabled.
384 * This function modifies blend state.
389 struct pipe_blend_state blend; local
391 memset(&blend, 0, sizeof(blend));
393 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
394 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
395 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ZERO;
396 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ZERO;
399 blend
1265 struct pipe_blend_state blend; local
[all...]
/external/freetype/include/freetype/internal/
H A Dpsaux.h647 PS_Blend blend,
689 PS_Blend blend; /* for multiple master support */ member in struct:T1_DecoderRec_
H A Dtttypes.h1168 /* blend :: Contains the data needed to control GX */
1283 GX_Blend blend; member in struct:TT_FaceRec_
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_blitter.c91 void *blend_write_color; /**< blend state with writemask of RGBA */
92 void *blend_keep_color; /**< blend state with writemask of 0 */
130 struct pipe_blend_state blend; local
172 /* blend state objects */
173 memset(&blend, 0, sizeof(blend));
174 ctx->blend_keep_color = pipe->create_blend_state(pipe, &blend);
176 blend.rt[0].colormask = PIPE_MASK_RGBA;
177 ctx->blend_write_color = pipe->create_blend_state(pipe, &blend);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_context.h231 const struct i915_blend_state *blend; member in struct:i915_context
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_state.c61 /* If the blend equation is ADD or REVERSE_SUBTRACT,
82 /* If the blend equation is ADD or REVERSE_SUBTRACT,
101 /* If the blend equation is ADD or REVERSE_SUBTRACT,
116 /* If the blend equation is ADD or REVERSE_SUBTRACT,
131 /* If the blend equation is ADD or REVERSE_SUBTRACT,
154 /* If the blend equation is ADD or REVERSE_SUBTRACT,
218 /* Create a new blend state based on the CSO blend state.
220 * This encompasses alpha blending, logic/raster ops, and blend dithering. */
225 struct r300_blend_state* blend local
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Devergreen_state.c102 R600_ERR("Unknown blend function %d\n", blend_func);
151 R600_ERR("Bad blend factor %d not supported!\n", blend_fact);
687 struct r600_pipe_blend *blend = CALLOC_STRUCT(r600_pipe_blend); local
693 if (blend == NULL) {
697 rstate = &blend->rstate;
717 blend->cb_target_mask = target_mask;
727 blend->dual_src_blend = util_blend_state_is_dual(state, 0);
766 blend->alpha_to_one = state->alpha_to_one;
1356 /* blend clamp should be set for all NORM/SRGB types */
1361 /* set blend bypas
3181 struct pipe_blend_state blend; local
3193 struct pipe_blend_state blend; local
[all...]
H A Dr600_state.c46 R600_ERR("Unknown blend function %d\n", blend_func);
95 R600_ERR("Bad blend factor %d not supported!\n", blend_fact);
699 struct r600_pipe_blend *blend = CALLOC_STRUCT(r600_pipe_blend); local
703 if (blend == NULL) {
706 rstate = &blend->rstate;
741 blend->cb_target_mask = target_mask;
742 blend->cb_color_control = color_control;
743 /* only MRT0 has dual src blend */
744 blend->dual_src_blend = util_blend_state_is_dual(state, 0);
786 blend
2646 struct pipe_blend_state blend; local
2668 struct pipe_blend_state blend; local
2680 struct pipe_blend_state blend; local
[all...]
H A Dr600_pipe.h91 unsigned cb_color_control; /* this comes from blend state */
401 /* current external blend state (from state tracker) */
402 struct r600_pipe_blend *blend; member in struct:r600_context
406 /* 1 - override current blend state with no_blend, 0 - use external state */
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_state.c43 struct si_state_blend *blend = rctx->queued.named.blend; local
46 if (blend == NULL)
54 mask &= blend->cb_target_mask;
78 R600_ERR("Unknown blend function %d\n", blend_func);
127 R600_ERR("Bad blend factor %d not supported!\n", blend_fact);
137 struct si_state_blend *blend = CALLOC_STRUCT(si_state_blend); local
138 struct si_pm4_state *pm4 = &blend->pm4;
142 if (blend == NULL)
156 blend
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_context.h198 const struct svga_blend_state *blend; member in struct:svga_state
/external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
H A Ddxgi_native.cpp739 void* blend; member in struct:dxgi_blitter
764 blend = pipe->create_blend_state(pipe, &blendd);
843 pipe->bind_blend_state(pipe, blend);
859 pipe->delete_blend_state(pipe, blend);
/external/mesa3d/src/gallium/state_trackers/vega/
H A Drenderer.c382 * Set renderer blend state. Blending is disabled.
384 * This function modifies blend state.
389 struct pipe_blend_state blend; local
391 memset(&blend, 0, sizeof(blend));
393 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
394 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
395 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ZERO;
396 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ZERO;
399 blend
1265 struct pipe_blend_state blend; local
[all...]
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_impl_unittest.cc2617 bool blend() const { return blend_; } function in class:cc::__anon4159::BlendStateTrackerContext
2660 void SetExpectation(bool blend, bool has_render_surface) { argument
2661 blend_ = blend;
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dtttypes.h1249 /* blend :: Contains the data needed to control GX */
1393 GX_Blend blend; member in struct:TT_FaceRec_
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_pipe.h91 unsigned cb_color_control; /* this comes from blend state */
401 /* current external blend state (from state tracker) */
402 struct r600_pipe_blend *blend; member in struct:r600_context
406 /* 1 - override current blend state with no_blend, 0 - use external state */
/external/chromium_org/ui/views/win/
H A Dhwnd_message_handler.cc1221 BLENDFUNCTION blend = {AC_SRC_OVER, 0, layered_alpha_, AC_SRC_ALPHA}; local
1223 RGB(0xFF, 0xFF, 0xFF), &blend, ULW_ALPHA);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jar ... static org.eclipse.swt.graphics.RGB blend (org.eclipse.swt.graphics.RGB, org ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 865 milliseconds

123456789