2015-04-07 02:48:20 +02:00
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/typedefs.h"
|
2015-04-07 02:48:20 +02:00
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
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
|
|
|
|
//============================================================================
|