Displaying 1 result from an estimated 1 matches for "tex_reloc".
Did you mean:
get_reloc
2010 Apr 20
1
[PATCH] nv30/exa : cleanup from nv40 exa
...XATexture(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 == PictFilterBilinear)
- card_...