b1e8889d96
They are not particularly packaged in Linux distros so we do not facilitate unbundling via SCons. There could be done if/when there is interest. Also s/pnm/pbm/, long-lived typo :)
28 lines
982 B
C++
28 lines
982 B
C++
//============================================================================
|
|
|
|
#pragma once
|
|
|
|
#include "typedefs.h"
|
|
|
|
//============================================================================
|
|
|
|
namespace Javelin
|
|
{
|
|
namespace Data
|
|
{
|
|
//============================================================================
|
|
|
|
extern const uint8_t BITSCALE_5_TO_8[32];
|
|
extern const uint8_t BITSCALE_4_TO_8[16];
|
|
extern const uint8_t BITSCALE_3_TO_8[8];
|
|
extern const uint8_t BITSCALE_8_TO_5_FLOOR[256];
|
|
extern const uint8_t BITSCALE_8_TO_4_FLOOR[256];
|
|
extern const uint8_t BITSCALE_8_TO_3_FLOOR[256];
|
|
extern const uint8_t BITSCALE_8_TO_5_CEIL[256];
|
|
extern const uint8_t BITSCALE_8_TO_4_CEIL[256];
|
|
extern const uint8_t BITSCALE_8_TO_3_CEIL[256];
|
|
|
|
//============================================================================
|
|
} // namespace Data
|
|
} // namespace Javelin
|
|
//============================================================================
|