Displaying 1 result from an estimated 1 matches for "card_repeat".
2010 Apr 20
1
[PATCH] nv30/exa : cleanup from nv40 exa
...-305,43 +255,47 @@ NV30EXATexture(ScrnInfoPtr pScrn, PixmapPtr pPix, PicturePtr pPict, int unit)
 	struct nouveau_channel *chan = pNv->chan;
 	struct nouveau_grobj *rankine = pNv->Nv3D;
 	struct nouveau_bo *bo = nouveau_pixmap_bo(pPix);
-	nv_pict_texture_format_t *fmt;
-	uint32_t card_filter, card_repeat;
 	uint32_t tex_reloc = NOUVEAU_BO_VRAM | NOUVEAU_BO_GART | NOUVEAU_BO_RD;
+	uint32_t pitch;
+	nv_pict_texture_format_t *fmt;
 	NV30EXA_STATE;
 
 	fmt = NV30_GetPictTextureFormat(pPict->format);
 	if (!fmt)
 		return FALSE;
 
-	card_repeat = 3; /* repeatNone */
-
-	if (pPict->filter == PictFi...