;PUTPIXEL -> RGBPIXEL locals n dd ? d_x dd ? d_y dd ? sx dd ? ;ширина буфера в пикселях pp_inc_1 dd ? pp_inc_2 dd ? a dd ? ;register int r dd ? ;register unsigned int g dd ? b dd ? rinc dd ? ;register unsigned int ginc dd ? binc dd ? if INTERP_Z eq 1 pz dd ? ;register unsigned short * zinc dd ? z dd ? ;register int zz dd ? end if endl pushad mov eax,[p1] mov ebx,[p2] mov ecx,[ebx+offs_zbup_y] cmp [eax+offs_zbup_y], ecx ;if (p1.y > p2.y) jg @f jl .end_0 ;if (p1.y != p2.y) mov ecx,[ebx+offs_zbup_x] cmp [eax+offs_zbup_x], ecx ;if (p1.x > p2.x) jle .end_0 ;if (p1.x <= p2.x) @@: ;if (p1.y > p2.y || (p1.y == p2.y && p1.x > p2.x)) mov [p1],ebx mov [p2],eax .end_0: mov eax,[zb] mov edx,[eax+offs_zbuf_xsize] mov [sx],edx mov ecx,[p1] mov edi,[eax+offs_zbuf_linesize] imul edi,[ecx+offs_zbup_y] mov edx,[ecx+offs_zbup_x] imul edx,PSZB add edi,edx add edi,[eax+offs_zbuf_pbuf] ;edi = (zb.pbuf + zb.linesize*p1.y + p1.x*PSZB) if INTERP_Z eq 1 mov edx,[ecx+offs_zbup_y] imul edx,[sx] add edx,[ecx+offs_zbup_x] shl edx,1 add edx,[eax+offs_zbuf_zbuf] mov [pz],edx ;pz = zb.zbuf + (p1.y*sx + p1.x) mov edx,[ecx+offs_zbup_z] mov [z],edx ;z = p1.z end if mov ebx,[p2] mov eax,[ebx+offs_zbup_x] sub eax,[ecx+offs_zbup_x] mov [d_x],eax ;d_x = p2.x - p1.x mov eax,[ebx+offs_zbup_y] sub eax,[ecx+offs_zbup_y] mov [d_y],eax ;d_y = p2.y - p1.y mov eax,[ecx+offs_zbup_r] shl eax,8 mov [r],eax ;r = p1.r << 8 mov eax,[ecx+offs_zbup_g] shl eax,8 mov [g],eax ;g = p1.g << 8 mov eax,[ecx+offs_zbup_b] shl eax,8 mov [b],eax ;b = p1.b << 8 macro RGBPIXEL { if TGL_FEATURE_RENDER_BITS eq 24 mov eax,[r] shr eax,16 mov byte[edi],al mov eax,[g] shr eax,16 mov byte[edi+1],al mov eax,[b] shr eax,16 mov byte[edi+2],al ;;; else ;*pp = RGB_TO_PIXEL(r >> 8,g >> 8,b >> 8) end if } macro PUTPIXEL { if INTERP_Z eq 1 local .end_0 mov eax,[z] shr eax, ZB_POINT_Z_FRAC_BITS mov [zz],eax mov ebx,[pz] cmp ax,word[ebx] jl .end_0 RGBPIXEL mov eax,dword[zz] mov ebx,[pz] mov word[ebx],ax .end_0: else RGBPIXEL end if } macro DRAWLINE d_x,d_y,inc_1,inc_2 { local .mz_0 local .mz_1 local .mz_2 local .mr_0 local .mr_1 local .mr_2 local .mg_0 local .mg_1 local .mg_2 local .mb_0 local .mb_1 local .mb_2 mov eax,d_x mov [n],eax mov ebx,[p1] mov ecx,[p2] if INTERP_Z eq 1 mov eax,[ecx+offs_zbup_z] cmp eax,[ebx+offs_zbup_z] jg .mz_0 je .mz_1 ;if(p2.z 0) mov esi,[sx] inc esi cmp eax,[d_y] jl .els_2 ;if (d_x >= d_y) DRAWLINE [d_x], [d_y], esi, 1 jmp .end_2 .els_2: DRAWLINE [d_y], [d_x], esi, [sx] jmp .end_2 .els_3: xor eax,eax sub eax,[d_x] mov [d_x],eax mov esi,[sx] dec esi cmp eax,[d_y] jl .els_4 ;if (d_x >= d_y) DRAWLINE [d_x], [d_y], esi, -1 jmp .end_2 .els_4: DRAWLINE [d_y], [d_x], esi, [sx] .end_2: popad ret endp restore INTERP_Z ; internal defines purge DRAWLINE purge PUTPIXEL purge RGBPIXEL