HomeSort by relevance Sort by last modified time
    Searched refs:rasterizer (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/mesa3d/src/gallium/drivers/softpipe/
sp_state_rasterizer.c 46 void *rasterizer)
50 if (softpipe->rasterizer == rasterizer)
54 draw_set_rasterizer_state(softpipe->draw, rasterizer, rasterizer);
56 softpipe->rasterizer = rasterizer;
64 void *rasterizer)
66 FREE( rasterizer );
sp_quad_pipe.c 65 if (sp->rasterizer->poly_stipple_enable)
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_decompose.h 6 !(draw->rasterizer->flatshade && \
7 draw->rasterizer->flatshade_first);
draw_pipe_validate.c 66 const struct pipe_rasterizer_state *rasterizer,
75 rasterizer,
86 if (rasterizer->line_stipple_enable && draw->pipeline.line_stipple)
90 if (roundf(rasterizer->line_width) > draw->pipeline.wide_line_threshold)
94 if (rasterizer->line_smooth && draw->pipeline.aaline)
101 if (rasterizer->point_size > draw->pipeline.wide_point_threshold)
105 if (rasterizer->point_quad_rasterization
110 if (rasterizer->point_smooth && draw->pipeline.aapoint)
114 if (rasterizer->sprite_coord_enable && draw->pipeline.point_sprite)
122 if (rasterizer->poly_stipple_enable && draw->pipeline.pstipple
    [all...]
draw_vbuf.h 62 * combination of rasterizer state and primitive.
67 const struct pipe_rasterizer_state *rasterizer,
draw_pipe_offset.c 131 offset->units = (float) (stage->draw->rasterizer->offset_units * stage->draw->mrd);
132 offset->scale = stage->draw->rasterizer->offset_scale;
133 offset->clamp = stage->draw->rasterizer->offset_clamp;
  /cts/tests/tests/text/src/android/text/style/cts/
RasterizerSpanTest.java 20 import android.graphics.Rasterizer;
28 Rasterizer r = new Rasterizer();
35 Rasterizer expected = new Rasterizer();
45 Rasterizer rasterizer = new Rasterizer(); local
46 RasterizerSpan rasterizerSpan = new RasterizerSpan(rasterizer);
52 assertSame(rasterizer, tp.getRasterizer())
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
tri.c 123 struct pipe_rasterizer_state rasterizer; local
125 memset(&rasterizer, 0, sizeof rasterizer);
126 rasterizer.cull_face = PIPE_FACE_NONE;
127 rasterizer.gl_rasterization_rules = 1;
128 rasterizer.flatshade = FlatShade;
129 rasterizer.depth_clip = 1;
130 handle = info.ctx->create_rasterizer_state(info.ctx, &rasterizer);
quad-tex.c 186 struct pipe_rasterizer_state rasterizer; local
188 memset(&rasterizer, 0, sizeof rasterizer);
189 rasterizer.cull_face = PIPE_FACE_NONE;
190 rasterizer.gl_rasterization_rules = 1;
191 rasterizer.depth_clip = 1;
192 handle = info.ctx->create_rasterizer_state(info.ctx, &rasterizer);
shader-leak.c 249 struct pipe_rasterizer_state rasterizer; local
251 memset(&rasterizer, 0, sizeof rasterizer);
252 rasterizer.cull_face = PIPE_FACE_NONE;
253 rasterizer.gl_rasterization_rules = 1;
254 rasterizer.depth_clip = 1;
255 handle = ctx->create_rasterizer_state(ctx, &rasterizer);
tri-gs.c 254 struct pipe_rasterizer_state rasterizer; local
256 memset(&rasterizer, 0, sizeof rasterizer);
257 rasterizer.cull_face = PIPE_FACE_NONE;
258 rasterizer.gl_rasterization_rules = 1;
259 rasterizer.depth_clip = 1;
260 handle = ctx->create_rasterizer_state(ctx, &rasterizer);
tri-instanced.c 305 struct pipe_rasterizer_state rasterizer; local
307 memset(&rasterizer, 0, sizeof rasterizer);
308 rasterizer.cull_face = PIPE_FACE_NONE;
309 rasterizer.gl_rasterization_rules = 1;
310 rasterizer.depth_clip = 1;
311 handle = ctx->create_rasterizer_state(ctx, &rasterizer);
quad-sample.c 376 struct pipe_rasterizer_state rasterizer; local
378 memset(&rasterizer, 0, sizeof rasterizer);
379 rasterizer.cull_face = PIPE_FACE_NONE;
380 rasterizer.gl_rasterization_rules = 1;
381 rasterizer.depth_clip = 1;
382 handle = ctx->create_rasterizer_state(ctx, &rasterizer);
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_program.h 45 struct pipe_rasterizer_state rasterizer; member in struct:program
pp_program.c 93 p->rasterizer.cull_face = PIPE_FACE_NONE;
94 p->rasterizer.gl_rasterization_rules = 1;
95 p->rasterizer.depth_clip = 1;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_rasterizer.c 59 /* Partition rasterizer state into what we want the draw module to
105 llvmpipe->rasterizer = &state->lp_state;
126 llvmpipe->rasterizer = NULL;
136 void *rasterizer)
138 FREE( rasterizer );
  /frameworks/native/opengl/libagl/
state.cpp 74 ggl_init_context(&(c->rasterizer));
91 c->rasterizer.base = base;
96 c->rasterizer.procs.depthMask(c, 1);
99 c->rasterizer.procs.enable(c, GL_DITHER);
113 ggl_uninit_context(&(c->rasterizer));
114 free(c->rasterizer.base);
192 // these need to fall through into the rasterizer
193 c->rasterizer.procs.enableDisable(c, cap, enabled);
196 c->rasterizer.procs.enableDisable(c, GL_TEXTURE_2D, enabled);
291 c->rasterizer.procs.enableDisable(c
    [all...]
texture.cpp 79 c->rasterizer.procs.activeTexture(c, i);
80 c->rasterizer.procs.bindTexture(c, &(u.texture->surface));
81 c->rasterizer.procs.texGeni(c, GGL_S,
83 c->rasterizer.procs.texGeni(c, GGL_T,
85 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D,
87 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D,
89 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D,
91 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D,
96 c->rasterizer.procs.disable(c, GGL_TEXTURE_2D);
104 if (c->rasterizer.state.texture[i].enable
    [all...]
primitives.cpp 105 // configure the rasterizer here, before we clip
106 c->rasterizer.procs.color4xv(c, v2->color.v);
125 // configure the rasterizer here, before we clip
126 c->rasterizer.procs.color4xv(c, v2->color.v);
173 // configure the rasterizer here, before we clip
174 c->rasterizer.procs.color4xv(c, v2->color.v);
191 // configure the rasterizer here, before we clip
192 c->rasterizer.procs.color4xv(c, v2->color.v);
214 const uint32_t enables = c->rasterizer.state.enables;
397 if (!(c->rasterizer.state.texture[i].enable)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
LayerRasterizerTest.java 24 import android.graphics.Rasterizer;
30 private void exerciseRasterizer(Rasterizer rasterizer) {
36 paint.setRasterizer(rasterizer);
  /external/mesa3d/src/gallium/tests/trivial/
tri.c 70 struct pipe_rasterizer_state rasterizer; member in struct:program
152 /* rasterizer */
153 memset(&p->rasterizer, 0, sizeof(p->rasterizer));
154 p->rasterizer.cull_face = PIPE_FACE_NONE;
155 p->rasterizer.gl_rasterization_rules = 1;
156 p->rasterizer.depth_clip = 1;
254 cso_set_rasterizer(p->cso, &p->rasterizer);
quad-tex.c 72 struct pipe_rasterizer_state rasterizer; member in struct:program
201 /* rasterizer */
202 memset(&p->rasterizer, 0, sizeof(p->rasterizer));
203 p->rasterizer.cull_face = PIPE_FACE_NONE;
204 p->rasterizer.gl_rasterization_rules = 1;
205 p->rasterizer.depth_clip = 1;
318 cso_set_rasterizer(p->cso, &p->rasterizer);
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_immediate.c 109 LIS4 |= i915->rasterizer->LIS4;
142 if (i915->rasterizer->LIS7) {
197 LIS7 = i915->rasterizer->LIS7;
i915_state.c 884 const struct pipe_rasterizer_state *rasterizer)
888 cso->templ = *rasterizer;
889 cso->color_interp = rasterizer->flatshade ? INTERP_CONSTANT : INTERP_LINEAR;
890 cso->light_twoside = rasterizer->light_twoside;
892 cso->ds[1].f = rasterizer->offset_scale;
893 if (rasterizer->poly_stipple_enable) {
897 if (rasterizer->scissor)
902 switch (rasterizer->cull_face) {
907 if (rasterizer->front_ccw)
913 if (rasterizer->front_ccw
    [all...]
  /external/skia/src/effects/
SkLayerRasterizer.cpp 200 SkLayerRasterizer* rasterizer; local
202 rasterizer = nullptr;
205 rasterizer = new SkLayerRasterizer(fLayers);
208 return rasterizer;
227 SkLayerRasterizer* rasterizer = new SkLayerRasterizer(layers); local
228 return rasterizer;

Completed in 240 milliseconds

1 2 3 4 5 6