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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/swrast/
s_atifragshader.h 35 _swrast_exec_fragment_shader( struct gl_context *ctx, SWspan *span );
s_texcombine.h 35 _swrast_texture_span( struct gl_context *ctx, SWspan *span );
s_span.c 29 * \brief Span processing functions used by all rasterization functions.
59 * Set default fragment attributes for the span using the
64 _swrast_span_default_attribs(struct gl_context *ctx, SWspan *span)
71 span->z = FloatToFixed(ctx->Current.RasterPos[2] * depthMax + 0.5F);
75 span->z = (GLint)tmpf;
77 span->zStep = 0;
78 span->interpMask |= SPAN_Z;
82 span->attrStart[FRAG_ATTRIB_WPOS][3] = 1.0;
83 span->attrStepX[FRAG_ATTRIB_WPOS][3] = 0.0;
84 span->attrStepY[FRAG_ATTRIB_WPOS][3] = 0.0
    [all...]
s_points.c 86 SWspan span; local
96 span.z = FloatToFixed(vert->attrib[FRAG_ATTRIB_WPOS][2] + 0.5F);
98 span.z = (GLuint) (vert->attrib[FRAG_ATTRIB_WPOS][2] + 0.5F);
99 span.zStep = 0;
103 /* span init */
104 INIT_SPAN(span, GL_POINT);
105 span.interpMask = SPAN_Z | SPAN_RGBA;
107 span.facing = swrast->PointLineFacing;
109 span.red = ChanToFixed(vert->color[0]);
110 span.green = ChanToFixed(vert->color[1])
246 SWspan span; local
366 SWspan span; local
460 SWspan *span = &(swrast->PointSpan); local
    [all...]
s_alpha.h 36 _swrast_alpha_test( const struct gl_context *ctx, SWspan *span );
s_linetemp.h 69 SWspan span; local
221 * Span setup: compute start and step values for all interpolated values.
225 span.red = ChanToFixed(vert0->color[0]);
226 span.green = ChanToFixed(vert0->color[1]);
227 span.blue = ChanToFixed(vert0->color[2]);
228 span.alpha = ChanToFixed(vert0->color[3]);
229 span.redStep = (ChanToFixed(vert1->color[0]) - span.red ) / numPixels;
230 span.greenStep = (ChanToFixed(vert1->color[1]) - span.green) / numPixels
    [all...]
s_bitmap.c 56 SWspan span; local
72 INIT_SPAN(span, GL_BITMAP);
73 span.end = width;
74 span.arrayMask = SPAN_XY;
75 _swrast_span_default_attribs(ctx, &span);
86 span.array->x[count] = px + col;
87 span.array->y[count] = py + row;
108 span.array->x[count] = px + col;
109 span.array->y[count] = py + row;
127 /* flush the span */
    [all...]
s_depth.h 38 _swrast_depth_test_span( struct gl_context *ctx, SWspan *span);
41 _swrast_depth_clamp_span( struct gl_context *ctx, SWspan *span );
44 _swrast_depth_bounds_test( struct gl_context *ctx, SWspan *span );
s_fog.h 40 _swrast_fog_rgba_span( const struct gl_context *ctx, SWspan *span );
s_fragprog.h 38 _swrast_exec_fragment_program(struct gl_context *ctx, SWspan *span);
s_logic.h 37 SWspan *span);
s_masking.h 39 SWspan *span, GLuint buf);
s_tritemp.h 58 * RENDER_SPAN(span) - code to write a span of pixels.
100 GLfixed endVal = span.CHANNEL + (LEN) * span.CHANNELSTEP; \
102 span.CHANNEL -= endVal; \
104 if (span.CHANNEL < 0) { \
105 span.CHANNEL = 0; \
142 SWspan span; local
146 INIT_SPAN(span, GL_POLYGON);
147 span.y = 0; /* silence warnings *
    [all...]
s_alpha.c 89 * \return 0 if all pixels in the span failed the alpha test,
93 _swrast_alpha_test(const struct gl_context *ctx, SWspan *span)
95 const GLuint n = span->end;
96 GLubyte *mask = span->array->mask;
107 span->writeAll = GL_FALSE;
111 if (span->arrayMask & SPAN_RGBA) {
113 if (span->array->ChanType == GL_UNSIGNED_BYTE) {
114 GLubyte (*rgba)[4] = span->array->rgba8;
119 else if (span->array->ChanType == GL_UNSIGNED_SHORT) {
120 GLushort (*rgba)[4] = span->array->rgba16
    [all...]
s_fog.c 90 if (span->arrayAttribs & FRAG_BIT_FOGC) { \
92 for (i = 0; i < span->end; i++) { \
93 const GLfloat fogCoord = span->array->attribs[FRAG_ATTRIB_FOGC][i][0]; \
105 const GLfloat fogStep = span->attrStepX[FRAG_ATTRIB_FOGC][0]; \
106 GLfloat fogCoord = span->attrStart[FRAG_ATTRIB_FOGC][0]; \
107 const GLfloat wStep = span->attrStepX[FRAG_ATTRIB_WPOS][3]; \
108 GLfloat w = span->attrStart[FRAG_ATTRIB_WPOS][3]; \
110 for (i = 0; i < span->end; i++) { \
125 * Apply fog to a span of RGBA pixels.
126 * The fog value are either in the span->array->fog array or interpolated fro
    [all...]
s_triangle.c 82 span.interpMask |= SPAN_RGBA; \
83 span.red = ChanToFixed(v2->color[0]); \
84 span.green = ChanToFixed(v2->color[1]); \
85 span.blue = ChanToFixed(v2->color[2]); \
86 span.alpha = ChanToFixed(v2->color[3]); \
87 span.redStep = 0; \
88 span.greenStep = 0; \
89 span.blueStep = 0; \
90 span.alphaStep = 0;
91 #define RENDER_SPAN( span ) _swrast_write_rgba_span(ctx, &span)
    [all...]
s_blend.h 38 _swrast_blend_span(struct gl_context *ctx, struct gl_renderbuffer *rb, SWspan *span);
  /external/mesa3d/src/mesa/drivers/x11/
xm_tri.c 67 #define RENDER_SPAN( span ) { \
68 GLint x = span.x, y = YFLIP(xrb, span.y); \
70 for (i = 0; i < span.end; i++, x++) { \
71 const DEPTH_TYPE z = FixedToDepth(span.z); \
74 PACK_TRUECOLOR(p, FixedToInt(span.red), \
75 FixedToInt(span.green), FixedToInt(span.blue)); \
79 span.red += span.redStep;
    [all...]
  /frameworks/base/docs/html/guide/
guide_toc.cs 12 <span class="en">Introduction</span>
16 <span class="en">App Fundamentals</span></a>
19 <span class="en">Device Compatibility</span>
22 <span class="en">System Permissions</span>
31 <span class="en">App Components</span>
    [all...]
  /external/icu/icu4j/
stylesheet.css 58 span.j-blk /* block comment */
63 span.j-cmt /* line comment */
68 span.j-key /* keyword */
75 span.j-str /* string constants */
80 span.j-chr /* char constants */
85 span.j-num /* number constants */
89 span.j-sym /* symbols, punctuation */
93 span.j-typ /* primitive types */
99 span.j-jdoc /* javadoc */
104 span.j-jdoc-key /* javadoc keyword *
    [all...]
  /external/skia/src/pathops/
SkPathOpsDebug.cpp 36 const SkOpSpanBase* span) {
39 if (entry == span) {
159 SkOpSpan* span = this->head(); local
161 if (span->toAngle()) {
163 result = span->toAngle();
165 } while ((span = span->next()->upCastable()));
182 const SkOpSpan* span = &fHead; local
184 if (span->done()) {
187 if (lastId == this->debugID() && lastT == span->t())
393 SkCoincidentSpans* span = fHead; local
407 const SkOpSpanBase* span = &fHead; local
    [all...]
SkPathOpsWinding.cpp 19 // given the top span, project the most perpendicular ray and look for intersections
84 SkOpRayDir makeTestBase(SkOpSpan* span, double t) {
86 fSpan = span;
87 fT = span->t() * (1 - t) + span->next()->t() * t;
88 SkOpSegment* segment = span->segment();
171 SkOpSpan* span = this->windingSpanAtT(t); local
172 if (!span) {
174 } else if (!span->windValue() && !span->oppValue())
189 SkOpSpan* span = &fHead; local
268 SkOpSpan* span = hit->fSpan; local
291 SkOpSpan* span = hit->fSpan; local
357 SkOpSpan* span = &fHead; local
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
TextUtilitiesTests.java 188 assertEquals("<html><style foo=\"bar\">Not</style><span " +
190 "\">Visi</span>ble</html>",
192 assertEquals("<html>Visible<style foo=\"bar\">Not</style>A<span" +
194 "\">gain</span>Visible",
207 BackgroundColorSpan span = spans[0]; local
208 assertEquals(text.indexOf("visi"), ssb.getSpanStart(span));
209 assertEquals(text.indexOf("bl>e"), ssb.getSpanEnd(span));
218 span = spans[0];
219 assertEquals(text.indexOf("search word"), ssb.getSpanStart(span));
220 assertEquals(text.indexOf(" word"), ssb.getSpanEnd(span));
234 BackgroundColorSpan span = spans[0]; local
250 BackgroundColorSpan span = spans[0]; local
262 BackgroundColorSpan span = spans[0]; local
275 BackgroundColorSpan span = spans[0]; local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
StyleUtils.java 50 for (URLSpan span : urls) {
51 final int start = input.getSpanStart(span);
52 final int end = input.getSpanEnd(span);
53 input.removeSpan(span);
  /build/tools/droiddoc/templates-pdk/
docpage.cs 11 <span class="crumb" itemprop="breadcrumb">
16 </span>
31 <span style="font-size:1.2em">&rsaquo;</span>
32 <span class="training-nav-button-title"><?cs var:next.title ?></span>
41 <span style="font-size:1.2em">&rsaquo;</span>
42 <span class="training-nav-button-title"><?cs var:next.title ?></span>
    [all...]

Completed in 463 milliseconds

1 2 3 4 5 6 7 8 91011>>