mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-20 21:00:29 +01:00
tnl: if NAN_CHECK is enabled, also assert that pos.x != 0
This commit is contained in:
parent
c10002361c
commit
53dfd5d870
1 changed files with 3 additions and 0 deletions
|
|
@ -386,6 +386,9 @@ run_vp( GLcontext *ctx, struct tnl_pipeline_stage *stage )
|
|||
#endif
|
||||
COPY_4V(store->results[attr].data[i], machine.Outputs[attr]);
|
||||
}
|
||||
#ifdef NAN_CHECK
|
||||
ASSERT(machine.Outputs[0][3] != 0.0F);
|
||||
#endif
|
||||
#if 0
|
||||
printf("HPOS: %f %f %f %f\n",
|
||||
machine.Outputs[0][0],
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue