20 lines
562 B
C++
20 lines
562 B
C++
//----------------------------------------------------------------------------
|
|
//
|
|
// walkcpp.cpp
|
|
//
|
|
// C++ trapezoid edge walking functions.
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#include "rgb_pch.h"
|
|
#include "walk_mh.h"
|
|
#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.
|