• Home
  • Raw
  • Download

Lines Matching refs:PixelMaps

84    const GLfloat rscale = (GLfloat) (ctx->PixelMaps.RtoR.Size - 1);  in _mesa_map_rgba()
85 const GLfloat gscale = (GLfloat) (ctx->PixelMaps.GtoG.Size - 1); in _mesa_map_rgba()
86 const GLfloat bscale = (GLfloat) (ctx->PixelMaps.BtoB.Size - 1); in _mesa_map_rgba()
87 const GLfloat ascale = (GLfloat) (ctx->PixelMaps.AtoA.Size - 1); in _mesa_map_rgba()
88 const GLfloat *rMap = ctx->PixelMaps.RtoR.Map; in _mesa_map_rgba()
89 const GLfloat *gMap = ctx->PixelMaps.GtoG.Map; in _mesa_map_rgba()
90 const GLfloat *bMap = ctx->PixelMaps.BtoB.Map; in _mesa_map_rgba()
91 const GLfloat *aMap = ctx->PixelMaps.AtoA.Map; in _mesa_map_rgba()
112 GLuint rmask = ctx->PixelMaps.ItoR.Size - 1; in _mesa_map_ci_to_rgba()
113 GLuint gmask = ctx->PixelMaps.ItoG.Size - 1; in _mesa_map_ci_to_rgba()
114 GLuint bmask = ctx->PixelMaps.ItoB.Size - 1; in _mesa_map_ci_to_rgba()
115 GLuint amask = ctx->PixelMaps.ItoA.Size - 1; in _mesa_map_ci_to_rgba()
116 const GLfloat *rMap = ctx->PixelMaps.ItoR.Map; in _mesa_map_ci_to_rgba()
117 const GLfloat *gMap = ctx->PixelMaps.ItoG.Map; in _mesa_map_ci_to_rgba()
118 const GLfloat *bMap = ctx->PixelMaps.ItoB.Map; in _mesa_map_ci_to_rgba()
119 const GLfloat *aMap = ctx->PixelMaps.ItoA.Map; in _mesa_map_ci_to_rgba()
236 const GLuint mask = ctx->PixelMaps.ItoI.Size - 1; in _mesa_apply_ci_transfer_ops()
240 indexes[i] = _mesa_lroundevenf(ctx->PixelMaps.ItoI.Map[j]); in _mesa_apply_ci_transfer_ops()
276 GLuint mask = ctx->PixelMaps.StoS.Size - 1; in _mesa_apply_stencil_transfer_ops()
279 stencil[i] = (GLubyte) ctx->PixelMaps.StoS.Map[ stencil[i] & mask ]; in _mesa_apply_stencil_transfer_ops()