You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
760 B
31 lines
760 B
//----------------------------------------------------------------------------
|
|
//
|
|
// rsdbg.cpp
|
|
//
|
|
// Setup debugging support.
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#include "rgb_pch.h"
|
|
#pragma hdrstop
|
|
|
|
#if 0 && DBG
|
|
|
|
static DebugModuleFlags g_RastSpanInitOutputFlags[] =
|
|
{
|
|
DBG_DECLARE_MODFLAG(SPIM, INVALID),
|
|
DBG_DECLARE_MODFLAG(SPIM, REPORT),
|
|
0, NULL,
|
|
};
|
|
static DebugModuleFlags g_RastSpanInitUserFlags[] =
|
|
{
|
|
DBG_DECLARE_MODFLAG(SPIU, BREAK_ON_SPANINIT),
|
|
0, NULL,
|
|
};
|
|
DBG_DECLARE_ONCE(RastSpanInit, SPI,
|
|
g_RastSpanInitOutputFlags, 0,
|
|
g_RastSpanInitUserFlags, 0);
|
|
|
|
#endif // #if DBG
|