HomeSort by relevance Sort by last modified time
    Searched full:rasterizer (Results 101 - 125 of 361) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.h 81 struct si_state_rasterizer *rasterizer; member in struct:si_state::__anon19774
  /external/mesa3d/src/gallium/include/state_tracker/
sw_winsys.h 30 * Software rasterizer winsys.
  /external/mesa3d/src/gallium/targets/libgl-xlib/
xlib.c 61 /* Create a software rasterizer on top of that winsys:
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.cpp 295 void CFX_SkiaDeviceDriver::SetClipMask(rasterizer_scanline_aa& rasterizer) {
296 m_pAggDriver->SetClipMask(rasterizer);
396 rasterizer_scanline_aa& rasterizer,
403 rasterizer, color, bFullCover, bGroupKnockout, alpha_flag, pIccTransform);
  /external/pdfium/third_party/freetype/include/freetype/internal/
fttrace.h 36 FT_TRACE_DEF( raster ) /* monochrome rasterizer (ftraster.c) */
  /external/skia/gm/
tallstretchedbitmaps.cpp 34 // The sw rasterizer disables AA for large canvii. So we make a small canvas for each draw.
  /external/skia/src/core/
SkRemote.h 89 colorfilter, rasterizer, looper, imagefilter, annotation; member in struct:SkRemote::Encoder::CommonIDs
  /external/skia/src/sfnt/
SkOTTable_EBLC.h 65 } bitDepth; //the Microsoft rasterizer v.1.7 or greater supports
  /external/skia/tests/
LayerRasterizerTest.cpp 92 // Create a layer rasterizer with all the existing layers.
  /external/freetype/src/truetype/
ttinterp.h 260 /* The following 6 aren't fully implemented but here for MS rasterizer */
272 FT_Int rasterizer_version; /* MS rasterizer version */
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_stipple.c 206 stipple->pattern = draw->rasterizer->line_stipple_pattern;
207 stipple->factor = draw->rasterizer->line_stipple_factor + 1;
draw_pt_emit.c 165 &draw->rasterizer->point_size,
230 &draw->rasterizer->point_size,
draw_pipe_clip.c 201 if (stage->draw->rasterizer->flatshade_first) {
222 if (stage->draw->rasterizer->flatshade_first) {
244 stage->draw->rasterizer->flatshade_first);
436 if (stage->draw->rasterizer->flatshade_first) {
598 indexed_interp[0] = indexed_interp[1] = stage->draw->rasterizer->flatshade ?
  /external/pdfium/third_party/freetype/src/truetype/
ttinterp.h 260 /* The following 6 aren't fully implemented but here for MS rasterizer */
272 FT_Int rasterizer_version; /* MS rasterizer version */
  /frameworks/native/include/private/ui/
RegionHelper.h 74 void operator()(region_rasterizer& rasterizer) {
86 rasterizer(current);
  /external/mesa3d/src/gallium/drivers/identity/
id_context.c 220 const struct pipe_rasterizer_state *rasterizer)
226 rasterizer);
231 void *rasterizer)
237 rasterizer);
242 void *rasterizer)
248 rasterizer);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_setup.c 806 key->flatshade_first = lp->rasterizer->flatshade_first;
807 key->pixel_center_half = lp->rasterizer->gl_rasterization_rules;
808 key->twoside = lp->rasterizer->light_twoside;
821 key->units = (float) (lp->rasterizer->offset_units * lp->mrd);
822 key->scale = lp->rasterizer->offset_scale;
827 if (lp->rasterizer->flatshade)
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_context.c 310 const struct pipe_rasterizer_state *rasterizer)
318 rasterizer);
326 void *rasterizer)
333 rasterizer);
339 void *rasterizer)
346 rasterizer);
    [all...]
  /external/skia/include/core/
SkPaint.h 605 /** Get the paint's rasterizer (or NULL).
608 @return the paint's rasterizer (or NULL)
612 /** Set or clear the rasterizer object.
614 Pass NULL to clear any previous rasterizer.
616 If a previous rasterizer exists in the paint, its reference count is
617 decremented. If rasterizer is not NULL, its reference count is
619 @param rasterizer May be NULL. The new rasterizer to be installed in
621 @return rasterizer
623 SkRasterizer* setRasterizer(SkRasterizer* rasterizer);
    [all...]
  /frameworks/native/opengl/libagl/
egl.cpp 133 return static_cast<egl_context_t*>(gl->rasterizer.base);
606 gl->rasterizer.procs.colorBuffer(gl, &buffer);
607 if (depth.data != gl->rasterizer.state.buffers.depth.data)
608 gl->rasterizer.procs.depthBuffer(gl, &depth);
621 gl->rasterizer.procs.readBuffer(gl, &buffer);
705 gl->rasterizer.procs.colorBuffer(gl, &buffer);
706 if (depth.data != gl->rasterizer.state.buffers.depth.data)
707 gl->rasterizer.procs.depthBuffer(gl, &depth);
719 gl->rasterizer.procs.readBuffer(gl, &buffer);
788 gl->rasterizer.procs.colorBuffer(gl, &pbuffer)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_context.c 106 void *rasterizer, *rasterizer_saved; member in struct:cso_context
164 if (ctx->rasterizer == cso->data)
528 if (ctx->rasterizer != handle) {
529 ctx->rasterizer = handle;
538 ctx->rasterizer_saved = ctx->rasterizer;
543 if (ctx->rasterizer != ctx->rasterizer_saved) {
544 ctx->rasterizer = ctx->rasterizer_saved;
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c 696 /* rasterizer state: just scissor */
698 struct pipe_rasterizer_state rasterizer; local
699 memset(&rasterizer, 0, sizeof(rasterizer));
700 rasterizer.clamp_fragment_color = !st->clamp_frag_color_in_shader &&
703 rasterizer.gl_rasterization_rules = 1;
704 rasterizer.depth_clip = !ctx->Transform.DepthClamp;
705 rasterizer.scissor = ctx->Scissor.Enabled;
706 cso_set_rasterizer(cso, &rasterizer);
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 61 private Rasterizer mRasterizer;
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_prim_vbuf.c 29 * Interface between 'draw' module's output and the softpipe rasterizer/setup
167 const boolean flatshade_first = softpipe->rasterizer->flatshade_first;
364 const boolean flatshade_first = softpipe->rasterizer->flatshade_first;
  /external/pdfium/third_party/freetype/include/freetype/
ftttdrv.h 195 * Version~35 corresponds to MS rasterizer v.1.7 as used e.g. in
199 * Version~38 corresponds to MS rasterizer v.1.9; it is roughly
220 * values for the MS rasterizer engine, together with the additional

Completed in 768 milliseconds

1 2 3 45 6 7 8 91011>>