diff options
author | Brian Paul <[email protected]> | 2002-01-16 20:15:00 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-01-16 20:15:00 +0000 |
commit | 658702df9706860c0b6777593bf3a1791cc988e6 (patch) | |
tree | b625ccb39940ac14db1cbbb1d9467053204cebf8 /src/mesa/swrast/s_linetemp.h | |
parent | 028fe46fc5c48b6481be2850c0cfa8c929b45728 (diff) |
changed PB (pixel buffer) to use texcoord[4] array
Diffstat (limited to 'src/mesa/swrast/s_linetemp.h')
-rw-r--r-- | src/mesa/swrast/s_linetemp.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_linetemp.h b/src/mesa/swrast/s_linetemp.h index a305a45d58d..21e786b4b2d 100644 --- a/src/mesa/swrast/s_linetemp.h +++ b/src/mesa/swrast/s_linetemp.h @@ -1,4 +1,4 @@ -/* $Id: s_linetemp.h,v 1.10 2001/12/05 10:24:31 keithw Exp $ */ +/* $Id: s_linetemp.h,v 1.11 2002/01/16 20:15:01 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -188,6 +188,18 @@ return; } + /* + printf("%s():\n", __FUNCTION__); + printf(" (%f, %f) -> (%f, %f)\n", + vert0->win[0], vert0->win[1], vert1->win[0], vert1->win[1]); + printf(" (%d, %d, %d) -> (%d, %d, %d)\n", + vert0->color[0], vert0->color[1], vert0->color[2], + vert1->color[0], vert1->color[1], vert1->color[2]); + printf(" (%d, %d, %d) -> (%d, %d, %d)\n", + vert0->specular[0], vert0->specular[1], vert0->specular[2], + vert1->specular[0], vert1->specular[1], vert1->specular[2]); + */ + /* * Despite being clipped to the view volume, the line's window coordinates * may just lie outside the window bounds. That is, if the legal window |