brender-1997/pentprim/xzuvc.asm
2022-05-03 14:31:40 -07:00

57 lines
1.1 KiB
NASM

; Copyright (c) 1992,1993-1995 Argonaut Technologies Limited. All rights reserved.
;
; $Id: xzuvc.asm 1.3 1997/05/20 17:08:03 JOHNG Exp $
; $Locker: $
;
; MMX Rasteriser - Texture * Constant colour
;
; All rasterisers are entered with esp pointing at the triangle parameter block
; and exit by popping setup block from stack and jumping to next function
;
.586
.MMX
.model flat,c
; include iammx.inc
include drv.inc
include unpack.inc
include rastmacs.inc
.code
if 0
; Let mkdep generate a dependency
;
include xzuvc.inc
endif
if PARTS and PART_16Z
COLOUR_TYPE_15 = 0
COLOUR_TYPE_16 = 1
;; Depth Buffered Textured, Constant colour modulate
;;
DITHER = 0
SCREENDOOR = 0
BLEND=0
RASTERISE_PAIR <work_mmx_zuvc>, <param_zuv>, <xzuvc.inc>,RasteriseMMX565_Z_UV_C
DITHER = 1
SCREENDOOR = 0
BLEND=0
RASTERISE_PAIR <work_mmx_zuvc>, <param_zuv>, <xzuvc.inc>,RasteriseMMX565_Z_UV_C_D
DITHER = 0
SCREENDOOR = 1
BLEND=0
RASTERISE_PAIR <work_mmx_zuvc>, <param_zuv>, <xzuvc.inc>,RasteriseMMX565_Z_UV_C_S
DITHER = 1
SCREENDOOR = 1
BLEND=0
RASTERISE_PAIR <work_mmx_zuvc>, <param_zuv>, <xzuvc.inc>,RasteriseMMX565_Z_UV_C_SD
endif
end