search for: 16ac

Displaying 2 results from an estimated 2 matches for "16ac".

Did you mean: 16a1
2009 Jun 21
0
[PATCH] nv50: update comments
...+ * 1298 = 0x00000004; or 0x00000005 if DEPR is written + * + * 19a8 = 0x00000000 + * | 0x00000100 if DEPR is written + * | 0x00100000 if KIL is used + * + * 196c = 0x00000000 + * | 0x00000011 if DEPR is used + * + * 1510 = bitmask to enable clipping planes + * 1688 = two-sided lighting enable + * 16ac = entry count of mapping table at [16bc] + * 16b0 = count of temporaries used in VP + * + * 1904 = 0x01CCBBFF (01 is sometimes 00 - ?) + * CC = number of color components in map (primary + secondary) + * BB = first back color's map index (colors should be contiguous) + * FF = first front color&...
2009 Jun 21
0
[PATCH] nv50: add support for two-sided lighting
...; nv50_program_validate_code(nv50, p); - so = so_new(10, 0); + so = so_new(32, 0); so_method(so, tesla, 0x1650, 2); so_data (so, p->cfg.vp.attr[0]); so_data (so, p->cfg.vp.attr[1]); so_method(so, tesla, 0x16b8, 1); so_data (so, p->cfg.high_result); - so_method(so, tesla, 0x16ac, 2); - so_data (so, p->cfg.high_result); //8); - so_data (so, p->cfg.high_temp); so_method(so, tesla, 0x140c, 1); so_data (so, p->code->start); so_ref(so, &nv50->state.vertprog); @@ -2410,7 +2425,6 @@ nv50_fragprog_validate(struct nv50_context *nv50) struct nouveau_gro...