////////////////////////////////////////////////////////////////////////////////////////////////////
// Constant values
////////////////////////////////////////////////////////////////////////////////////////////////////

#define SAMPLE2X_MAX 4
#define SAMPLE2X_NORM 0.25

#define SAMPLE4X_MAX 16
#define SAMPLE4X_NORM 0.0625

// 2 Samples
static const float2 SAMPLE2X_TABLE[SAMPLE2X_MAX] =
{
    {  0.5, -0.5 },
    {  0.5,  0.5 },
    { -0.5, -0.5 },
    { -0.5,  0.5 },
};

// 4 Samples
static const float2 SAMPLE4X_TABLE[SAMPLE4X_MAX] =
{
    {  1.5, -1.5 },
    {  1.5, -0.5 },
    {  1.5,  0.5 },
    {  1.5,  1.5 },

    {  0.5, -1.5 },
    {  0.5, -0.5 },
    {  0.5,  0.5 },
    {  0.5,  1.5 },

    { -0.5, -1.5 },
    { -0.5, -0.5 },
    { -0.5,  0.5 },
    { -0.5,  1.5 },

    { -1.5, -1.5 },
    { -1.5, -0.5 },
    { -1.5,  0.5 },
    { -1.5,  1.5 },
};
