| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | points.c | 3 * Point operations. 46 if (ctx->Point.Size == size) 55 ctx->Point.Size = size; 131 if (TEST_EQ_3V(ctx->Point.Params, params)) 135 COPY_3V(ctx->Point.Params, params); 136 ctx->Point._Attenuated = (ctx->Point.Params[0] != 1.0F || 137 ctx->Point.Params[1] != 0.0F || 138 ctx->Point.Params[2] != 0.0F); 146 if (ctx->Point [all...] |
| H A D | texenv.c | 492 if (ctx->Point.CoordReplace & (1u << texunit)) 496 ctx->Point.CoordReplace |= (1u << texunit); 498 if (~(ctx->Point.CoordReplace) & (1u << texunit)) 502 ctx->Point.CoordReplace &= ~(1u << texunit); 776 if (ctx->Point.CoordReplace & (1u << texunit)) 852 if (ctx->Point.CoordReplace & (1u << texunit))
|
| H A D | attrib.c | 176 attr->PointSmooth = ctx->Point.SmoothFlag; 177 attr->PointSprite = ctx->Point.PointSprite; 237 memcpy(&head->Point, &ctx->Point, sizeof(head->Point)); 423 TEST_AND_UPDATE(ctx->Point.SmoothFlag, enable->PointSmooth, 426 TEST_AND_UPDATE(ctx->Point.PointSprite, enable->PointSprite, 1056 TEST_AND_CALL1(Point.Size, PointSize); 1057 TEST_AND_UPDATE(ctx->Point.SmoothFlag, attr->Point [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/ |
| H A D | nv20_state_polygon.c | 40 PUSH_DATAf(push, ctx->Point.Size); 42 PUSH_DATA (push, (uint32_t)(ctx->Point.Size * 8));
|
| H A D | nv10_state_polygon.c | 84 PUSH_DATA (push, (uint32_t)(ctx->Point.Size * 8)); 87 PUSH_DATAb(push, ctx->Point.SmoothFlag);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/ |
| H A D | nv20_state_polygon.c | 40 PUSH_DATAf(push, ctx->Point.Size); 42 PUSH_DATA (push, (uint32_t)(ctx->Point.Size * 8));
|
| H A D | nv10_state_polygon.c | 84 PUSH_DATA (push, (uint32_t)(ctx->Point.Size * 8)); 87 PUSH_DATAb(push, ctx->Point.SmoothFlag);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | points.c | 3 * Point operations. 46 if (ctx->Point.Size == size) 55 ctx->Point.Size = size; 132 if (TEST_EQ_3V(ctx->Point.Params, params)) 135 COPY_3V(ctx->Point.Params, params); 136 ctx->Point._Attenuated = (ctx->Point.Params[0] != 1.0F || 137 ctx->Point.Params[1] != 0.0F || 138 ctx->Point.Params[2] != 0.0F); 146 if (ctx->Point [all...] |
| H A D | texenv.c | 493 if (ctx->Point.CoordReplace & (1u << ctx->Texture.CurrentUnit)) 495 ctx->Point.CoordReplace |= (1u << ctx->Texture.CurrentUnit); 497 if (~(ctx->Point.CoordReplace) & (1u << ctx->Texture.CurrentUnit)) 499 ctx->Point.CoordReplace &= ~(1u << ctx->Texture.CurrentUnit); 718 if (ctx->Point.CoordReplace & (1u << ctx->Texture.CurrentUnit)) 793 if (ctx->Point.CoordReplace & (1u << ctx->Texture.CurrentUnit))
|
| /xsrc/external/mit/xditview/dist/ |
| H A D | draw.c | 60 typedef struct Point { struct 63 struct Point *next; 64 } Point; typedef in typeref:struct:Point 74 static Point *spline = (Point *) NULL; /* head of spline linked list */ 77 static void DeletePoint(Point *p); 80 static void InsertPoint(Point *p, Point *q); 81 static void LineApprox(Point *p1, Point *p [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/ |
| H A D | t_vb_points.c | 53 if (ctx->Point._Attenuated && !ctx->VertexProgram._Current) { 58 const GLfloat p0 = ctx->Point.Params[0]; 59 const GLfloat p1 = ctx->Point.Params[1]; 60 const GLfloat p2 = ctx->Point.Params[2]; 61 const GLfloat pointSize = ctx->Point.Size;
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/tnl/ |
| H A D | t_vb_points.c | 53 if (ctx->Point._Attenuated && !ctx->VertexProgram._Current) { 58 const GLfloat p0 = ctx->Point.Params[0]; 59 const GLfloat p1 = ctx->Point.Params[1]; 60 const GLfloat p2 = ctx->Point.Params[2]; 61 const GLfloat pointSize = ctx->Point.Size;
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| H A D | st_atom_rasterizer.c | 171 raster->point_size = ctx->Point.Size; 172 raster->point_smooth = !ctx->Point.PointSprite && ctx->Point.SmoothFlag; 176 if (ctx->Point.PointSprite) { 178 if ((ctx->Point.SpriteOrigin == GL_UPPER_LEFT) ^ 188 raster->sprite_coord_enable = ctx->Point.CoordReplace & 231 raster->point_size = CLAMP(ctx->Point.Size, 232 ctx->Point.MinSize, 233 ctx->Point.MaxSize);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| H A D | st_atom_rasterizer.c | 194 raster->point_size = ctx->Point.Size; 197 raster->point_smooth = !multisample && !ctx->Point.PointSprite && 198 ctx->Point.SmoothFlag; 202 if (ctx->Point.PointSprite) { 204 if ((ctx->Point.SpriteOrigin == GL_UPPER_LEFT) ^ 214 raster->sprite_coord_enable = ctx->Point.CoordReplace & 232 raster->point_size = CLAMP(ctx->Point.Size, 233 ctx->Point.MinSize, 234 ctx->Point.MaxSize);
|
| H A D | st_atom_shader.c | 155 if (st->lower_texcoord_replace && st->ctx->Point.PointSprite && 156 st->ctx->Point.CoordReplace) 157 key.lower_texcoord_replace = st->ctx->Point.CoordReplace;
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/ |
| H A D | s_points.c | 58 if (ctx->Point._Attenuated || ctx->VertexProgram.PointSizeEnabled) { 64 size = ctx->Point.Size; 67 size = CLAMP(size, ctx->Point.MinSize, ctx->Point.MaxSize); 128 if (ctx->Point.SpriteOrigin == GL_LOWER_LEFT) { 143 if (ctx->Point.CoordReplace & (1u << u)) { 146 if (ctx->Point.SpriteRMode == GL_ZERO) 148 else if (ctx->Point.SpriteRMode == GL_S) 261 if (vert->pointSize >= ctx->Point.Threshold) { 265 GLfloat dsize = vert->pointSize / ctx->Point [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/ |
| H A D | s_points.c | 58 if (ctx->Point._Attenuated || ctx->VertexProgram.PointSizeEnabled) { 64 size = ctx->Point.Size; 67 size = CLAMP(size, ctx->Point.MinSize, ctx->Point.MaxSize); 128 if (ctx->Point.SpriteOrigin == GL_LOWER_LEFT) { 143 if (ctx->Point.CoordReplace & (1u << u)) { 254 if (vert->pointSize >= ctx->Point.Threshold) { 258 GLfloat dsize = vert->pointSize / ctx->Point.Threshold; 537 const GLfloat size = CLAMP(ctx->Point.Size, 538 ctx->Point [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_sf.c | 127 key.do_point_sprite = ctx->Point.PointSprite; 129 key.point_sprite_coord_replace = ctx->Point.CoordReplace & 0xff; 140 if ((ctx->Point.SpriteOrigin == GL_LOWER_LEFT) == flip_y)
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_sf.c | 127 key.do_point_sprite = ctx->Point.PointSprite; 129 key.point_sprite_coord_replace = ctx->Point.CoordReplace & 0xff; 140 if ((ctx->Point.SpriteOrigin == GL_LOWER_LEFT) == flip_y)
|
| /xsrc/external/mit/xf86-video-nsc/dist/src/panel/ |
| H A D | drac9210.c | 585 ;Point to PCI address register 590 ;Point to PCI data register (CFCh) 608 ;Point to PCI address register 613 ;Point to PCI data register (CFCh) 630 ;Point to PCI address register 635 ;Point to PCI data register (CFCh) 652 ;Point to PCI address register 657 ;Point to PCI data register (CFCh) 676 ;Point to PCI address register 681 ;Point t [all...] |
| /xsrc/external/mit/xf86-video-geode/dist/src/panel/ |
| H A D | drac9210.c | 472 Point to PCI address register mov dx, 0 CF8h; 474 Point to PCI data register (CFCh) 484 Point to PCI address register mov dx, 0 CF8h; 486 Point to PCI data register (CFCh) 496 Point to PCI address register mov dx, 0 CF8h; 498 Point to PCI data register (CFCh) 508 Point to PCI address register 513 Point to PCI data register (CFCh) 526 Point to PCI address register mov dx, 0 CF8h; 528 Point t [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/ |
| H A D | prog_statevars.c | 275 value[0] = ctx->Point.Size; 276 value[1] = ctx->Point.MinSize; 277 value[2] = ctx->Point.MaxSize; 278 value[3] = ctx->Point.Threshold; 281 value[0] = ctx->Point.Params[0]; 282 value[1] = ctx->Point.Params[1]; 283 value[2] = ctx->Point.Params[2]; 491 if (ctx->Point.PointSprite) { 495 else if (ctx->Point.SmoothFlag || _mesa_is_multisample_enabled(ctx)) { 503 value[0] = ctx->Point [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/samples/ |
| H A D | nurb.c | 43 typedef INREAL Point[4]; typedef in typeref:typename:INREAL[4] 57 Point ctlpoints[S_NUMPOINTS][T_NUMPOINTS] = {
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/program/ |
| H A D | prog_statevars.c | 325 value[0] = ctx->Point.Size; 326 value[1] = ctx->Point.MinSize; 327 value[2] = ctx->Point.MaxSize; 328 value[3] = ctx->Point.Threshold; 331 value[0] = ctx->Point.Params[0]; 332 value[1] = ctx->Point.Params[1]; 333 value[2] = ctx->Point.Params[2]; 621 if (ctx->Point.PointSprite) { 625 else if (ctx->Point.SmoothFlag || _mesa_is_multisample_enabled(ctx)) { 633 value[0] = ctx->Point [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/r200/ |
| H A D | r200_state.c | 553 * Point state 563 ((GLuint)(ctx->Point.Size * 16.0))/16, 564 (((GLuint)(ctx->Point.Size * 16.0))&15)*100/16, 565 ((GLuint)(ctx->Point.Size * 16.0))&15); 570 rmesa->hw.cst.cmd[CST_RE_POINTSIZE] |= ((GLuint)(ctx->Point.Size * 16.0)); 573 fcmd[PTP_VPORT_SCALE_PTSIZE] = ctx->Point.Size; 587 rmesa->hw.lin.cmd[LIN_SE_LINE_WIDTH] |= (GLuint)(ctx->Point.MinSize * 16.0) << 16; 588 fcmd[PTP_CLAMP_MIN] = ctx->Point.MinSize; 594 rmesa->hw.cst.cmd[CST_RE_POINTSIZE] |= (GLuint)(ctx->Point.MaxSize * 16.0) << 16; 595 fcmd[PTP_CLAMP_MAX] = ctx->Point [all...] |