19 lines
538 B
C++
19 lines
538 B
C++
//----------------------------------------------------------------------------
|
|
//
|
|
// walkcpp.cpp
|
|
//
|
|
// C++ trapezoid edge walking functions.
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#include "pch.cpp"
|
|
#pragma hdrstop
|
|
|
|
// Currently empty.
|
|
//
|
|
// Could use m4 to generate specialized versions of everything,
|
|
// but the only overhead is two function calls per span. I don't
|
|
// think it's important enough to justify the extra code.
|