Difference for texmap/ntmap.c from version 1.3 to 1.4


version 1.3 version 1.4
Line 19
 
Line 19
  * Start of conversion to new texture mapper.   * Start of conversion to new texture mapper.
  *    *
  * $Log$   * $Log$
    * Revision 1.4  1999/10/18 00:31:55  donut
    * allow FP_TMAP to be used without NO_ASM
    *
  * Revision 1.3  1999/08/05 22:53:41  sekmu   * Revision 1.3  1999/08/05 22:53:41  sekmu
  *   *
  * D3D patch(es) from ADB   * D3D patch(es) from ADB
Line 511
 
Line 514
  if (fx_xright > Window_clip_right)   if (fx_xright > Window_clip_right)
  fx_xright = Window_clip_right;   fx_xright = Window_clip_right;
    
                         #if defined(NO_ASM) && !defined(ASM_PER)   #if (defined(NO_ASM) && !defined(ASM_PER)) || defined(FP_TMAP)
  c_tmap_scanline_per_nolight();   c_tmap_scanline_per_nolight();
  #else   #else
  asm_tmap_scanline_per();   asm_tmap_scanline_per();
Line 542
 
Line 545
  if (fx_xright > Window_clip_right)   if (fx_xright > Window_clip_right)
  fx_xright = Window_clip_right;   fx_xright = Window_clip_right;
   
                         #if defined(NO_ASM) && !defined(ASM_PER)   #if (defined(NO_ASM) && !defined(ASM_PER)) || defined(FP_TMAP)
  c_tmap_scanline_per();   c_tmap_scanline_per();
  #else   #else
  asm_tmap_scanline_per();   asm_tmap_scanline_per();

Legend:
line(s) removed in v.1.3 
line(s) changed
 line(s) added in v.1.4