diff options
author | Brian Paul <[email protected]> | 2005-11-16 04:06:32 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-11-16 04:06:32 +0000 |
commit | 909e8a7abbce61de467e059d9be57a1f32a3d344 (patch) | |
tree | b82072f0b892bcc45819547468886b388d29f913 | |
parent | 847160466cb7d1af55f294578c328b01fb3fd3d3 (diff) |
added depthstencil.c
-rw-r--r-- | src/mesa/main/descrip.mms | 3 | ||||
-rw-r--r-- | src/mesa/sources | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/descrip.mms b/src/mesa/main/descrip.mms index 2f3552e99ac..f4221cef903 100644 --- a/src/mesa/main/descrip.mms +++ b/src/mesa/main/descrip.mms @@ -32,6 +32,7 @@ SOURCES =accum.c \ convolve.c \ debug.c \ depth.c \ + depthstencil.c \ dispatch.c \ dlist.c \ drawpix.c \ @@ -91,6 +92,7 @@ context.obj,\ convolve.obj,\ debug.obj,\ depth.obj,\ +depthstencil.obj,\ dispatch.obj,\ dlist.obj,\ drawpix.obj,\ @@ -164,6 +166,7 @@ context.obj : context.c convolve.obj : convolve.c debug.obj : debug.c depth.obj : depth.c +depthstencil.obj : depthstencil.c dispatch.obj : dispatch.c dlist.obj : dlist.c drawpix.obj : drawpix.c diff --git a/src/mesa/sources b/src/mesa/sources index 75901316eff..50108f9a7e2 100644 --- a/src/mesa/sources +++ b/src/mesa/sources @@ -16,6 +16,7 @@ MAIN_SOURCES = \ main/convolve.c \ main/debug.c \ main/depth.c \ + main/depthstencil.c \ main/dlist.c \ main/drawpix.c \ main/enable.c \ |