Home
last modified time | relevance | path

Searched refs:fvf (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/nine/
Dnine_pipe.h489 nine_fvf_stride( DWORD fvf ) in nine_fvf_stride() argument
493 switch (fvf & D3DFVF_POSITION_MASK) { in nine_fvf_stride()
507 if (fvf & D3DFVF_NORMAL) { size += 3*4; } in nine_fvf_stride()
508 if (fvf & D3DFVF_PSIZE) { size += 1*4; } in nine_fvf_stride()
509 if (fvf & D3DFVF_DIFFUSE) { size += 1*4; } in nine_fvf_stride()
510 if (fvf & D3DFVF_SPECULAR) { size += 1*4; } in nine_fvf_stride()
512 texcount = (fvf >> D3DFVF_TEXCOUNT_SHIFT) & D3DFVF_TEXCOUNT_MASK; in nine_fvf_stride()
517 unsigned texformat = (fvf>>(16+i*2))&0x3; in nine_fvf_stride()
Dvertexdeclaration9.h49 DWORD fvf; member
Ddevice9.c2976 vdecl->fvf = FVF; in NineDevice9_ProcessVertices()
2977 util_hash_table_set(This->ff.ht_fvf, &vdecl->fvf, vdecl); in NineDevice9_ProcessVertices()
3136 vdecl->fvf = FVF; in NineDevice9_SetFVF()
3137 util_hash_table_set(This->ff.ht_fvf, &vdecl->fvf, vdecl); in NineDevice9_SetFVF()
3148 *pFVF = This->state.vdecl ? This->state.vdecl->fvf : 0; in NineDevice9_GetFVF()