mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-18 20:15:35 -04:00
Direct3D11: Add fog that doesn't work
This commit is contained in:
parent
e37c0a01d8
commit
f03f434c4e
@ -25,7 +25,7 @@ static const char VS_SOURCE[] =
|
||||
" float2 coords : TEXCOORD0; \n" \
|
||||
"#endif \n" \
|
||||
" float4 color : COLOR0; \n" \
|
||||
" float4 position : SV_POSITION; \n" \
|
||||
" float4 position : VPOS; \n" \
|
||||
"}; \n" \
|
||||
" \n" \
|
||||
"OUTPUT_VERTEX main(INPUT_VERTEX input) { \n" \
|
||||
@ -52,7 +52,8 @@ static const char PS_SOURCE[] =
|
||||
"float3 fogColor; \n" \
|
||||
"#endif \n" \
|
||||
"#ifdef PS_FOG_DENSITY \n" \
|
||||
"float fogDensity \n" \
|
||||
"float fogDensity; \n" \
|
||||
"float3 fogColor; \n" \
|
||||
"#endif \n" \
|
||||
" \n" \
|
||||
"struct INPUT_VERTEX { \n" \
|
||||
@ -60,6 +61,12 @@ static const char PS_SOURCE[] =
|
||||
" float2 coords : TEXCOORD0; \n" \
|
||||
"#endif \n" \
|
||||
" float4 color : COLOR0; \n" \
|
||||
"#ifdef PS_FOG_LINEAR \n" \
|
||||
" float4 position : VPOS; \n" \
|
||||
"#endif \n" \
|
||||
"#ifdef PS_FOG_DENSITY \n" \
|
||||
" float4 position : VPOS; \n" \
|
||||
"#endif \n" \
|
||||
"}; \n" \
|
||||
" \n" \
|
||||
"//float4 main(float2 coords : TEXCOORD0, float4 color : COLOR0) : SV_TARGET {\n" \
|
||||
@ -77,11 +84,14 @@ static const char PS_SOURCE[] =
|
||||
" if (color.a < 0.5) { discard; return color; } \n" \
|
||||
"#endif \n" \
|
||||
"#ifdef PS_FOG_LINEAR \n" \
|
||||
"float fogEnd; \n" \
|
||||
"float3 fogColor; \n" \
|
||||
" float depth = input.position.z / input.position.w; \n" \
|
||||
" float fog = saturate((fogEnd - depth) / fogEnd); \n" \
|
||||
" color.rgb = lerp(fogColor, color.rgb, fog); \n" \
|
||||
"#endif \n" \
|
||||
"#ifdef PS_FOG_DENSITY \n" \
|
||||
"float fogDensity \n" \
|
||||
" float depth = input.position.z / input.position.w; \n" \
|
||||
" float fog = saturate(exp(fogDensity * depth)); \n" \
|
||||
" color.rgb = lerp(fogColor, color.rgb, fog); \n" \
|
||||
"#endif \n" \
|
||||
" return color; \n" \
|
||||
"}";
|
||||
@ -134,23 +144,43 @@ int main() {
|
||||
const D3D_SHADER_MACRO ps_colored_test[] = { "PS_COLOR_ONLY","1", "PS_ALPHA_TEST","1", NULL,NULL };
|
||||
const D3D_SHADER_MACRO ps_textured_test[] = { "PS_ALPHA_TEST","1", NULL,NULL };
|
||||
|
||||
const D3D_SHADER_MACRO ps_colored_linear[] = { "PS_FOG_LINEAR","1", "PS_COLOR_ONLY","1", NULL,NULL };
|
||||
const D3D_SHADER_MACRO ps_textured_linear[] = { "PS_FOG_LINEAR","1", NULL,NULL };
|
||||
const D3D_SHADER_MACRO ps_colored_test_linear[] = { "PS_FOG_LINEAR","1", "PS_COLOR_ONLY","1", "PS_ALPHA_TEST","1", NULL,NULL };
|
||||
const D3D_SHADER_MACRO ps_textured_test_linear[] = { "PS_FOG_LINEAR","1", "PS_ALPHA_TEST","1", NULL,NULL };
|
||||
|
||||
const D3D_SHADER_MACRO ps_colored_density[] = { "PS_FOG_DENSITY","1", "PS_COLOR_ONLY","1", NULL,NULL };
|
||||
const D3D_SHADER_MACRO ps_textured_density[] = { "PS_FOG_DENSITY","1", NULL,NULL };
|
||||
const D3D_SHADER_MACRO ps_colored_test_density[] = { "PS_FOG_DENSITY","1", "PS_COLOR_ONLY","1", "PS_ALPHA_TEST","1", NULL,NULL };
|
||||
const D3D_SHADER_MACRO ps_textured_test_density[] = { "PS_FOG_DENSITY","1", "PS_ALPHA_TEST","1", NULL,NULL };
|
||||
|
||||
printf("// Generated using misc/D3D11ShaderGen.c\n\n");
|
||||
printf("//########################################################################################################################\n");
|
||||
printf("//------------------------------------------------------Vertex shaders----------------------------------------------------\n");
|
||||
printf("//########################################################################################################################\n");
|
||||
CompileVertexShader("vs_colored", vs_colored);
|
||||
CompileVertexShader("vs_textured", vs_textured);
|
||||
CompileVertexShader("vs_colored", vs_colored);
|
||||
CompileVertexShader("vs_textured", vs_textured);
|
||||
CompileVertexShader("vs_textured_offset", vs_offset);
|
||||
|
||||
printf("\n\n");
|
||||
printf("//########################################################################################################################\n");
|
||||
printf("//------------------------------------------------------Pixel shaders-----------------------------------------------------\n");
|
||||
printf("//########################################################################################################################\n");
|
||||
CompilePixelShader("ps_colored", ps_colored);
|
||||
CompilePixelShader("ps_textured", ps_textured);
|
||||
CompilePixelShader("ps_colored", ps_colored);
|
||||
CompilePixelShader("ps_textured", ps_textured);
|
||||
CompilePixelShader("ps_colored_test", ps_colored_test);
|
||||
CompilePixelShader("ps_textured_test", ps_textured_test);
|
||||
|
||||
CompilePixelShader("ps_colored_linear", ps_colored_linear);
|
||||
CompilePixelShader("ps_textured_linear", ps_textured_linear);
|
||||
CompilePixelShader("ps_colored_test_linear", ps_colored_test_linear);
|
||||
CompilePixelShader("ps_textured_test_linear", ps_textured_test_linear);
|
||||
|
||||
CompilePixelShader("ps_colored_density", ps_colored_density);
|
||||
CompilePixelShader("ps_textured_density", ps_textured_density);
|
||||
CompilePixelShader("ps_colored_test_density", ps_colored_test_density);
|
||||
CompilePixelShader("ps_textured_test_density", ps_textured_test_density);
|
||||
|
||||
//Sleep(5000);
|
||||
return 0;
|
||||
}
|
||||
|
@ -152,7 +152,7 @@ Thus it is **NOT SAFE** to allocate a string on the stack. */
|
||||
#ifndef CC_BUILD_MANUAL
|
||||
#if defined _WIN32
|
||||
#define CC_BUILD_WIN
|
||||
#define CC_BUILD_D3D9
|
||||
#define CC_BUILD_D3D11
|
||||
#define CC_BUILD_WINGUI
|
||||
#define CC_BUILD_WININET
|
||||
#define CC_BUILD_WINMM
|
||||
|
@ -182,25 +182,6 @@ void Gfx_DisableMipmaps(void) {
|
||||
}
|
||||
|
||||
|
||||
/*########################################################################################################################*
|
||||
*-----------------------------------------------------State management----------------------------------------------------*
|
||||
*#########################################################################################################################*/
|
||||
void Gfx_SetFog(cc_bool enabled) {
|
||||
}
|
||||
|
||||
void Gfx_SetFogCol(PackedCol col) {
|
||||
}
|
||||
|
||||
void Gfx_SetFogDensity(float value) {
|
||||
}
|
||||
|
||||
void Gfx_SetFogEnd(float value) {
|
||||
}
|
||||
|
||||
void Gfx_SetFogMode(FogFunc func) {
|
||||
}
|
||||
|
||||
|
||||
/*########################################################################################################################*
|
||||
*-------------------------------------------------------Index buffers-----------------------------------------------------*
|
||||
*#########################################################################################################################*/
|
||||
@ -544,14 +525,30 @@ void Gfx_SetFaceCulling(cc_bool enabled) {
|
||||
//########################################################################################################################
|
||||
// https://docs.microsoft.com/en-us/windows/win32/direct3d11/pixel-shader-stage
|
||||
static ID3D11SamplerState* ps_sampler;
|
||||
static ID3D11PixelShader* ps_shaders[4];
|
||||
static ID3D11PixelShader* ps_shaders[12];
|
||||
static ID3D11Buffer* ps_cBuffer;
|
||||
static cc_bool ps_alphaTesting;
|
||||
static float ps_fogEnd, ps_fogDensity;
|
||||
static PackedCol ps_fogColor;
|
||||
static int ps_fogMode;
|
||||
|
||||
static _declspec(align(64)) struct PSConstants {
|
||||
float fogValue;
|
||||
float fogR, fogG, fogB;
|
||||
} ps_constants;
|
||||
static const struct ShaderDesc ps_descs[] = {
|
||||
{ ps_colored, sizeof(ps_colored) },
|
||||
{ ps_textured, sizeof(ps_textured) },
|
||||
{ ps_colored, sizeof(ps_colored) },
|
||||
{ ps_textured, sizeof(ps_textured) },
|
||||
{ ps_colored_test, sizeof(ps_colored_test) },
|
||||
{ ps_textured_test, sizeof(ps_textured_test) },
|
||||
{ ps_colored_linear, sizeof(ps_colored_linear) },
|
||||
{ ps_textured_linear, sizeof(ps_textured_linear) },
|
||||
{ ps_colored_test_linear, sizeof(ps_colored_test_linear) },
|
||||
{ ps_textured_test_linear, sizeof(ps_textured_test_linear) },
|
||||
{ ps_colored_density, sizeof(ps_colored_density) },
|
||||
{ ps_textured_density, sizeof(ps_textured_density) },
|
||||
{ ps_colored_test_density, sizeof(ps_colored_test_density) },
|
||||
{ ps_textured_test_density, sizeof(ps_textured_test_density) },
|
||||
};
|
||||
|
||||
static void PS_CreateShaders(void) {
|
||||
@ -561,9 +558,35 @@ static void PS_CreateShaders(void) {
|
||||
}
|
||||
}
|
||||
|
||||
static void PS_UpdateShader(void) {
|
||||
static void PS_CreateConstants(void) {
|
||||
D3D11_BUFFER_DESC desc = { 0 }; // TODO see notes in VS_CreateConstants
|
||||
desc.ByteWidth = sizeof(ps_constants);
|
||||
desc.Usage = D3D11_USAGE_DEFAULT;
|
||||
desc.BindFlags = D3D11_BIND_CONSTANT_BUFFER;
|
||||
|
||||
D3D11_SUBRESOURCE_DATA data;
|
||||
data.pSysMem = &ps_constants;
|
||||
data.SysMemPitch = 0;
|
||||
data.SysMemSlicePitch = 0;
|
||||
|
||||
HRESULT hr = ID3D11Device_CreateBuffer(device, &desc, &data, &ps_cBuffer);
|
||||
ID3D11DeviceContext_PSSetConstantBuffers(context, 0, 1, &ps_cBuffer);
|
||||
}
|
||||
|
||||
static int PS_CalcShaderIndex(void) {
|
||||
int idx = gfx_format == VERTEX_FORMAT_COLOURED ? 0 : 1;
|
||||
if (ps_alphaTesting) idx += 2;
|
||||
|
||||
if (gfx_fogEnabled) {
|
||||
// uncomment when it works
|
||||
//if (ps_fogMode == FOG_LINEAR) idx += 4;
|
||||
//if (ps_fogMode == FOG_EXP) idx += 8;
|
||||
}
|
||||
return idx;
|
||||
}
|
||||
|
||||
static void PS_UpdateShader(void) {
|
||||
int idx = PS_CalcShaderIndex();
|
||||
ID3D11DeviceContext_PSSetShader(context, ps_shaders[idx], NULL, 0);
|
||||
}
|
||||
|
||||
@ -584,6 +607,15 @@ static void PS_CreateSamplers(void) {
|
||||
HRESULT hr = ID3D11Device_CreateSamplerState(device, &desc, &ps_sampler);
|
||||
}
|
||||
|
||||
static void PS_UpdateConstants(void) {
|
||||
ps_constants.fogR = PackedCol_R(ps_fogColor) / 255.0f;
|
||||
ps_constants.fogG = PackedCol_G(ps_fogColor) / 255.0f;
|
||||
ps_constants.fogB = PackedCol_B(ps_fogColor) / 255.0f;
|
||||
|
||||
ps_constants.fogValue = ps_fogMode == FOG_LINEAR ? ps_fogEnd : ps_fogDensity;
|
||||
ID3D11DeviceContext_UpdateSubresource(context, ps_cBuffer, 0, NULL, &ps_constants, 0, 0);
|
||||
}
|
||||
|
||||
static void PS_UpdateSampler(void) {
|
||||
ID3D11DeviceContext_PSSetSamplers(context, 0, 1, &ps_sampler);
|
||||
}
|
||||
@ -591,6 +623,7 @@ static void PS_UpdateSampler(void) {
|
||||
static void PS_Init(void) {
|
||||
PS_CreateShaders();
|
||||
PS_CreateSamplers();
|
||||
PS_CreateConstants();
|
||||
PS_UpdateSampler();
|
||||
PS_UpdateShader();
|
||||
}
|
||||
@ -607,6 +640,36 @@ void Gfx_BindTexture(GfxResourceID texId) {
|
||||
ID3D11DeviceContext_PSSetShaderResources(context, 0, 1, &view);
|
||||
}
|
||||
|
||||
void Gfx_SetFog(cc_bool enabled) {
|
||||
if (gfx_fogEnabled == enabled) return;
|
||||
gfx_fogEnabled = enabled;
|
||||
PS_UpdateShader();
|
||||
}
|
||||
|
||||
void Gfx_SetFogCol(PackedCol col) {
|
||||
if (col == ps_fogColor) return;
|
||||
ps_fogColor = col;
|
||||
PS_UpdateConstants();
|
||||
}
|
||||
|
||||
void Gfx_SetFogDensity(float value) {
|
||||
if (value == ps_fogDensity) return;
|
||||
ps_fogDensity = value;
|
||||
PS_UpdateConstants();
|
||||
}
|
||||
|
||||
void Gfx_SetFogEnd(float value) {
|
||||
if (value == ps_fogEnd) return;
|
||||
ps_fogEnd = value;
|
||||
PS_UpdateConstants();
|
||||
}
|
||||
|
||||
void Gfx_SetFogMode(FogFunc func) {
|
||||
if (ps_fogMode == func) return;
|
||||
ps_fogMode = func;
|
||||
PS_UpdateShader();
|
||||
}
|
||||
|
||||
|
||||
//########################################################################################################################
|
||||
//-------------------------------------------------------Output merger----------------------------------------------------
|
||||
|
@ -74,8 +74,8 @@ static int RunProgram(int argc, char** argv) {
|
||||
#ifdef _MSC_VER
|
||||
/* NOTE: Make sure to comment this out before pushing a commit */
|
||||
//cc_string rawArgs = String_FromConst("UnknownShadow200 fffff 127.0.0.1 25565");
|
||||
//cc_string rawArgs = String_FromConst("UnknownShadow200");
|
||||
//argsCount = String_UNSAFE_Split(&rawArgs, ' ', args, 4);
|
||||
cc_string rawArgs = String_FromConst("UnknownShadow200");
|
||||
argsCount = String_UNSAFE_Split(&rawArgs, ' ', args, 4);
|
||||
#endif
|
||||
|
||||
if (argsCount == 0) {
|
||||
|
@ -220,3 +220,353 @@ static unsigned char ps_textured_test[944] = {
|
||||
0x2c,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x0f,0x00,0x00,0x00,0x53,0x56,0x5f,0x54,0x41,0x52,0x47,0x45,0x54,0x00,0xab,0xab,
|
||||
};
|
||||
static unsigned char ps_colored_linear[1044] = {
|
||||
0x44,0x58,0x42,0x43,0x0b,0xff,0x9d,0x4a,0x39,0xe2,0x02,0x88,0xef,0x2c,0xe2,0x66,0xf2,0x16,0xf2,0x36,0x01,0x00,0x00,0x00,0x14,0x04,0x00,0x00,0x06,0x00,0x00,0x00,
|
||||
0x38,0x00,0x00,0x00,0x0c,0x01,0x00,0x00,0x1c,0x02,0x00,0x00,0x98,0x02,0x00,0x00,0x94,0x03,0x00,0x00,0xe0,0x03,0x00,0x00,0x41,0x6f,0x6e,0x39,0xcc,0x00,0x00,0x00,
|
||||
0xcc,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0x9c,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x01,0x00,0x24,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x24,0x00,
|
||||
0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x00,0x00,0x0f,0xb0,
|
||||
0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x01,0x00,0x0f,0xb0,0x06,0x00,0x00,0x02,0x00,0x00,0x08,0x80,0x01,0x00,0xff,0xb0,0x04,0x00,0x00,0x04,0x00,0x00,0x01,0x80,
|
||||
0x01,0x00,0xaa,0xb0,0x00,0x00,0xff,0x81,0x00,0x00,0x00,0xa0,0x06,0x00,0x00,0x02,0x00,0x00,0x02,0x80,0x00,0x00,0x00,0xa0,0x05,0x00,0x00,0x03,0x00,0x00,0x11,0x80,
|
||||
0x00,0x00,0x55,0x80,0x00,0x00,0x00,0x80,0x12,0x00,0x00,0x04,0x01,0x00,0x03,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0xe4,0xb0,0x00,0x00,0xc9,0xa0,0x12,0x00,0x00,0x04,
|
||||
0x01,0x00,0x04,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0xaa,0xb0,0x00,0x00,0xff,0xa0,0x01,0x00,0x00,0x02,0x01,0x00,0x08,0x80,0x00,0x00,0xff,0xb0,0x01,0x00,0x00,0x02,
|
||||
0x00,0x08,0x0f,0x80,0x01,0x00,0xe4,0x80,0xff,0xff,0x00,0x00,0x53,0x48,0x44,0x52,0x08,0x01,0x00,0x00,0x40,0x00,0x00,0x00,0x42,0x00,0x00,0x00,0x59,0x00,0x00,0x04,
|
||||
0x46,0x8e,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x62,0x10,0x00,0x03,0xf2,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x62,0x10,0x00,0x03,0xc2,0x10,0x10,0x00,
|
||||
0x01,0x00,0x00,0x00,0x65,0x00,0x00,0x03,0xf2,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x68,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x0e,0x00,0x00,0x07,0x12,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x2a,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x0a,0x00,0x10,0x80,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x20,0x00,0x08,0x12,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0xe2,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x06,0x19,0x10,0x00,0x00,0x00,0x00,0x00,0x56,0x8e,0x20,0x80,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x0a,
|
||||
0x72,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x96,0x07,0x10,0x00,0x00,0x00,0x00,0x00,0x96,0x87,0x20,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x36,0x00,0x00,0x05,0x82,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x01,0x53,0x54,0x41,0x54,
|
||||
0x74,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x52,0x44,0x45,0x46,0xf4,0x00,0x00,0x00,
|
||||
0x01,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0x00,0x09,0x00,0x00,0xc4,0x00,0x00,0x00,0x3c,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x47,0x6c,0x6f,
|
||||
0x62,0x61,0x6c,0x73,0x00,0xab,0xab,0xab,0x3c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x98,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa8,0x00,0x00,0x00,0x04,0x00,0x00,0x00,
|
||||
0x0c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xb4,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x45,0x6e,0x64,0x00,0xab,0x00,0x00,0x03,0x00,0x01,0x00,0x01,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x43,0x6f,0x6c,0x6f,0x72,0x00,0xab,0xab,0xab,0x01,0x00,0x03,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x28,0x52,0x29,0x20,0x48,0x4c,0x53,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x20,0x43,0x6f,
|
||||
0x6d,0x70,0x69,0x6c,0x65,0x72,0x20,0x31,0x30,0x2e,0x30,0x2e,0x31,0x30,0x30,0x31,0x31,0x2e,0x30,0x00,0x49,0x53,0x47,0x4e,0x44,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
|
||||
0x08,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0x00,0x3e,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0f,0x0c,0x00,0x00,0x43,0x4f,0x4c,0x4f,0x52,0x00,0x56,0x50,0x4f,0x53,0x00,0xab,
|
||||
0x4f,0x53,0x47,0x4e,0x2c,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x53,0x56,0x5f,0x54,0x41,0x52,0x47,0x45,0x54,0x00,0xab,0xab,
|
||||
};
|
||||
static unsigned char ps_textured_linear[1356] = {
|
||||
0x44,0x58,0x42,0x43,0x12,0x46,0x4e,0xe1,0xc3,0xf2,0x41,0x52,0x53,0xf7,0xf5,0x8c,0x7a,0xe2,0x19,0x75,0x01,0x00,0x00,0x00,0x4c,0x05,0x00,0x00,0x06,0x00,0x00,0x00,
|
||||
0x38,0x00,0x00,0x00,0x64,0x01,0x00,0x00,0xe4,0x02,0x00,0x00,0x60,0x03,0x00,0x00,0xac,0x04,0x00,0x00,0x18,0x05,0x00,0x00,0x41,0x6f,0x6e,0x39,0x24,0x01,0x00,0x00,
|
||||
0x24,0x01,0x00,0x00,0x00,0x02,0xff,0xff,0xf0,0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x01,0x00,0x28,0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x34,0x00,0x01,0x00,0x24,0x00,
|
||||
0x00,0x00,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,
|
||||
0x00,0x00,0x03,0xb0,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x01,0x00,0x0f,0xb0,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x02,0x00,0x0f,0xb0,0x1f,0x00,0x00,0x02,
|
||||
0x00,0x00,0x00,0x90,0x00,0x08,0x0f,0xa0,0x42,0x00,0x00,0x03,0x00,0x00,0x0f,0x80,0x00,0x00,0xe4,0xb0,0x00,0x08,0xe4,0xa0,0x06,0x00,0x00,0x02,0x01,0x00,0x08,0x80,
|
||||
0x02,0x00,0xff,0xb0,0x04,0x00,0x00,0x04,0x01,0x00,0x01,0x80,0x02,0x00,0xaa,0xb0,0x01,0x00,0xff,0x81,0x00,0x00,0x00,0xa0,0x06,0x00,0x00,0x02,0x01,0x00,0x02,0x80,
|
||||
0x00,0x00,0x00,0xa0,0x05,0x00,0x00,0x03,0x01,0x00,0x11,0x80,0x01,0x00,0x55,0x80,0x01,0x00,0x00,0x80,0x04,0x00,0x00,0x04,0x02,0x00,0x03,0x80,0x00,0x00,0xe4,0x80,
|
||||
0x01,0x00,0xe4,0xb0,0x00,0x00,0xc9,0xa1,0x04,0x00,0x00,0x04,0x02,0x00,0x04,0x80,0x00,0x00,0xaa,0x80,0x01,0x00,0xaa,0xb0,0x00,0x00,0xff,0xa1,0x05,0x00,0x00,0x03,
|
||||
0x00,0x00,0x08,0x80,0x00,0x00,0xff,0x80,0x01,0x00,0xff,0xb0,0x04,0x00,0x00,0x04,0x00,0x00,0x03,0x80,0x01,0x00,0x00,0x80,0x02,0x00,0xe4,0x80,0x00,0x00,0xc9,0xa0,
|
||||
0x04,0x00,0x00,0x04,0x00,0x00,0x04,0x80,0x01,0x00,0x00,0x80,0x02,0x00,0xaa,0x80,0x00,0x00,0xff,0xa0,0x01,0x00,0x00,0x02,0x00,0x08,0x0f,0x80,0x00,0x00,0xe4,0x80,
|
||||
0xff,0xff,0x00,0x00,0x53,0x48,0x44,0x52,0x78,0x01,0x00,0x00,0x40,0x00,0x00,0x00,0x5e,0x00,0x00,0x00,0x59,0x00,0x00,0x04,0x46,0x8e,0x20,0x00,0x00,0x00,0x00,0x00,
|
||||
0x01,0x00,0x00,0x00,0x5a,0x00,0x00,0x03,0x00,0x60,0x10,0x00,0x00,0x00,0x00,0x00,0x58,0x18,0x00,0x04,0x00,0x70,0x10,0x00,0x00,0x00,0x00,0x00,0x55,0x55,0x00,0x00,
|
||||
0x62,0x10,0x00,0x03,0x32,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x62,0x10,0x00,0x03,0xf2,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x62,0x10,0x00,0x03,0xc2,0x10,0x10,0x00,
|
||||
0x02,0x00,0x00,0x00,0x65,0x00,0x00,0x03,0xf2,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x68,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x0e,0x00,0x00,0x07,0x12,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x2a,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x0a,0x00,0x10,0x80,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x20,0x00,0x08,0x12,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x45,0x00,0x00,0x09,0xf2,0x00,0x10,0x00,
|
||||
0x01,0x00,0x00,0x00,0x46,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x7e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x10,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x0b,
|
||||
0xe2,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x06,0x09,0x10,0x00,0x01,0x00,0x00,0x00,0x06,0x19,0x10,0x00,0x01,0x00,0x00,0x00,0x56,0x8e,0x20,0x80,0x41,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x07,0x12,0x00,0x10,0x00,0x01,0x00,0x00,0x00,0x3a,0x00,0x10,0x00,0x01,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,
|
||||
0x01,0x00,0x00,0x00,0x36,0x00,0x00,0x05,0x82,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x01,0x00,0x00,0x00,0x32,0x00,0x00,0x0a,0x72,0x20,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x06,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x96,0x07,0x10,0x00,0x00,0x00,0x00,0x00,0x96,0x87,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x3e,0x00,0x00,0x01,0x53,0x54,0x41,0x54,0x74,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x06,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x52,0x44,0x45,0x46,0x44,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x98,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0x00,0x09,0x00,0x00,
|
||||
0x14,0x01,0x00,0x00,0x7c,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x85,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,
|
||||
0x0c,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x53,0x74,0x61,0x74,0x65,0x00,0x74,0x65,0x78,0x56,0x61,0x6c,0x75,0x65,0x00,0x24,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x73,0x00,0xab,
|
||||
0x8e,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xb0,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xe8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
|
||||
0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x45,0x6e,0x64,0x00,0xab,0x00,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x66,0x6f,0x67,0x43,0x6f,0x6c,0x6f,0x72,0x00,0xab,0xab,0xab,0x01,0x00,0x03,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0x69,0x63,0x72,
|
||||
0x6f,0x73,0x6f,0x66,0x74,0x20,0x28,0x52,0x29,0x20,0x48,0x4c,0x53,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x20,0x43,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x20,0x31,
|
||||
0x30,0x2e,0x30,0x2e,0x31,0x30,0x30,0x31,0x31,0x2e,0x30,0x00,0x49,0x53,0x47,0x4e,0x64,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x50,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x00,0x00,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0f,0x0f,0x00,0x00,0x5f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
|
||||
0x0f,0x0c,0x00,0x00,0x54,0x45,0x58,0x43,0x4f,0x4f,0x52,0x44,0x00,0x43,0x4f,0x4c,0x4f,0x52,0x00,0x56,0x50,0x4f,0x53,0x00,0x4f,0x53,0x47,0x4e,0x2c,0x00,0x00,0x00,
|
||||
0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,
|
||||
0x53,0x56,0x5f,0x54,0x41,0x52,0x47,0x45,0x54,0x00,0xab,0xab,
|
||||
};
|
||||
static unsigned char ps_colored_test_linear[1212] = {
|
||||
0x44,0x58,0x42,0x43,0x0f,0x77,0x4c,0x97,0x5b,0x60,0x8c,0xe7,0x60,0x29,0x67,0xa0,0xd5,0x07,0x75,0xc0,0x01,0x00,0x00,0x00,0xbc,0x04,0x00,0x00,0x06,0x00,0x00,0x00,
|
||||
0x38,0x00,0x00,0x00,0x64,0x01,0x00,0x00,0xc4,0x02,0x00,0x00,0x40,0x03,0x00,0x00,0x3c,0x04,0x00,0x00,0x88,0x04,0x00,0x00,0x41,0x6f,0x6e,0x39,0x24,0x01,0x00,0x00,
|
||||
0x24,0x01,0x00,0x00,0x00,0x02,0xff,0xff,0xf4,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x01,0x00,0x24,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x24,0x00,
|
||||
0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0x51,0x00,0x00,0x05,0x01,0x00,0x0f,0xa0,0x00,0x00,0x00,0xbf,
|
||||
0x00,0x00,0x00,0x80,0x00,0x00,0x80,0xbf,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x00,0x00,0x0f,0xb0,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,
|
||||
0x01,0x00,0x0f,0xb0,0x02,0x00,0x00,0x03,0x00,0x00,0x08,0x80,0x00,0x00,0xff,0xb0,0x01,0x00,0x00,0xa0,0x58,0x00,0x00,0x04,0x01,0x00,0x0f,0x80,0x00,0x00,0xff,0x80,
|
||||
0x01,0x00,0x55,0xa0,0x01,0x00,0xaa,0xa0,0x41,0x00,0x00,0x01,0x01,0x00,0x0f,0x80,0x06,0x00,0x00,0x02,0x00,0x00,0x01,0x80,0x01,0x00,0xff,0xb0,0x04,0x00,0x00,0x04,
|
||||
0x00,0x00,0x01,0x80,0x01,0x00,0xaa,0xb0,0x00,0x00,0x00,0x81,0x00,0x00,0x00,0xa0,0x06,0x00,0x00,0x02,0x00,0x00,0x02,0x80,0x00,0x00,0x00,0xa0,0x05,0x00,0x00,0x03,
|
||||
0x00,0x00,0x11,0x80,0x00,0x00,0x55,0x80,0x00,0x00,0x00,0x80,0x01,0x00,0x00,0x02,0x01,0x00,0x08,0x80,0x00,0x00,0xff,0xb0,0x12,0x00,0x00,0x04,0x01,0x00,0x03,0x80,
|
||||
0x00,0x00,0x00,0x80,0x00,0x00,0xe4,0xb0,0x00,0x00,0xc9,0xa0,0x12,0x00,0x00,0x04,0x01,0x00,0x04,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0xaa,0xb0,0x00,0x00,0xff,0xa0,
|
||||
0x58,0x00,0x00,0x04,0x00,0x00,0x0f,0x80,0x00,0x00,0xff,0x80,0x01,0x00,0xe4,0x80,0x00,0x00,0xe4,0xb0,0x01,0x00,0x00,0x02,0x00,0x08,0x0f,0x80,0x00,0x00,0xe4,0x80,
|
||||
0xff,0xff,0x00,0x00,0x53,0x48,0x44,0x52,0x58,0x01,0x00,0x00,0x40,0x00,0x00,0x00,0x56,0x00,0x00,0x00,0x59,0x00,0x00,0x04,0x46,0x8e,0x20,0x00,0x00,0x00,0x00,0x00,
|
||||
0x01,0x00,0x00,0x00,0x62,0x10,0x00,0x03,0xf2,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x62,0x10,0x00,0x03,0xc2,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x65,0x00,0x00,0x03,
|
||||
0xf2,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x68,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x31,0x00,0x00,0x07,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,0x00,0x00,0x00,0x3f,0x1f,0x00,0x04,0x03,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x04,0x03,0x01,0x40,0x00,0x00,
|
||||
0xff,0xff,0xff,0xff,0x36,0x00,0x00,0x05,0xf2,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x1e,0x10,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x01,0x15,0x00,0x00,0x01,
|
||||
0x0e,0x00,0x00,0x07,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x2a,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x09,
|
||||
0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x80,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x0e,0x20,0x00,0x08,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x09,0xe2,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x06,0x19,0x10,0x00,0x00,0x00,0x00,0x00,0x56,0x8e,0x20,0x80,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x0a,0x72,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x96,0x07,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x96,0x87,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x00,0x00,0x05,0x82,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x3e,0x00,0x00,0x01,0x53,0x54,0x41,0x54,0x74,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x06,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x52,0x44,0x45,0x46,0xf4,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0x00,0x09,0x00,0x00,
|
||||
0xc4,0x00,0x00,0x00,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x24,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x73,0x00,0xab,0xab,0xab,0x3c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x10,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x98,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xa8,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xb4,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x45,0x6e,0x64,0x00,0xab,
|
||||
0x00,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x43,0x6f,0x6c,0x6f,0x72,0x00,0xab,0xab,0xab,0x01,0x00,0x03,0x00,
|
||||
0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x28,0x52,0x29,0x20,0x48,0x4c,0x53,0x4c,0x20,0x53,
|
||||
0x68,0x61,0x64,0x65,0x72,0x20,0x43,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x20,0x31,0x30,0x2e,0x30,0x2e,0x31,0x30,0x30,0x31,0x31,0x2e,0x30,0x00,0x49,0x53,0x47,0x4e,
|
||||
0x44,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x0f,0x0f,0x00,0x00,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0f,0x0c,0x00,0x00,0x43,0x4f,0x4c,0x4f,
|
||||
0x52,0x00,0x56,0x50,0x4f,0x53,0x00,0xab,0x4f,0x53,0x47,0x4e,0x2c,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x53,0x56,0x5f,0x54,0x41,0x52,0x47,0x45,0x54,0x00,0xab,0xab,
|
||||
};
|
||||
static unsigned char ps_textured_test_linear[1540] = {
|
||||
0x44,0x58,0x42,0x43,0x3c,0xa0,0xdf,0x98,0x76,0xa7,0xfa,0xeb,0x96,0x33,0x47,0xe9,0x18,0x5e,0xef,0x40,0x01,0x00,0x00,0x00,0x04,0x06,0x00,0x00,0x06,0x00,0x00,0x00,
|
||||
0x38,0x00,0x00,0x00,0xcc,0x01,0x00,0x00,0x9c,0x03,0x00,0x00,0x18,0x04,0x00,0x00,0x64,0x05,0x00,0x00,0xd0,0x05,0x00,0x00,0x41,0x6f,0x6e,0x39,0x8c,0x01,0x00,0x00,
|
||||
0x8c,0x01,0x00,0x00,0x00,0x02,0xff,0xff,0x58,0x01,0x00,0x00,0x34,0x00,0x00,0x00,0x01,0x00,0x28,0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x34,0x00,0x01,0x00,0x24,0x00,
|
||||
0x00,0x00,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0x51,0x00,0x00,0x05,0x01,0x00,0x0f,0xa0,
|
||||
0x00,0x00,0x00,0xbf,0x00,0x00,0x00,0x80,0x00,0x00,0x80,0xbf,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x00,0x00,0x03,0xb0,0x1f,0x00,0x00,0x02,
|
||||
0x00,0x00,0x00,0x80,0x01,0x00,0x0f,0xb0,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x02,0x00,0x0f,0xb0,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x90,0x00,0x08,0x0f,0xa0,
|
||||
0x42,0x00,0x00,0x03,0x00,0x00,0x0f,0x80,0x00,0x00,0xe4,0xb0,0x00,0x08,0xe4,0xa0,0x04,0x00,0x00,0x04,0x01,0x00,0x08,0x80,0x00,0x00,0xff,0x80,0x01,0x00,0xff,0xb0,
|
||||
0x01,0x00,0x00,0xa0,0x58,0x00,0x00,0x04,0x02,0x00,0x0f,0x80,0x01,0x00,0xff,0x80,0x01,0x00,0x55,0xa0,0x01,0x00,0xaa,0xa0,0x41,0x00,0x00,0x01,0x02,0x00,0x0f,0x80,
|
||||
0x05,0x00,0x00,0x03,0x02,0x00,0x0f,0x80,0x00,0x00,0xe4,0x80,0x01,0x00,0xe4,0xb0,0x06,0x00,0x00,0x02,0x00,0x00,0x08,0x80,0x02,0x00,0xff,0xb0,0x04,0x00,0x00,0x04,
|
||||
0x00,0x00,0x08,0x80,0x02,0x00,0xaa,0xb0,0x00,0x00,0xff,0x81,0x00,0x00,0x00,0xa0,0x06,0x00,0x00,0x02,0x01,0x00,0x01,0x80,0x00,0x00,0x00,0xa0,0x05,0x00,0x00,0x03,
|
||||
0x00,0x00,0x18,0x80,0x00,0x00,0xff,0x80,0x01,0x00,0x00,0x80,0x04,0x00,0x00,0x04,0x01,0x00,0x03,0x80,0x00,0x00,0xe4,0x80,0x01,0x00,0xe4,0xb0,0x00,0x00,0xc9,0xa1,
|
||||
0x04,0x00,0x00,0x04,0x01,0x00,0x04,0x80,0x00,0x00,0xaa,0x80,0x01,0x00,0xaa,0xb0,0x00,0x00,0xff,0xa1,0x04,0x00,0x00,0x04,0x03,0x00,0x03,0x80,0x00,0x00,0xff,0x80,
|
||||
0x01,0x00,0xe4,0x80,0x00,0x00,0xc9,0xa0,0x04,0x00,0x00,0x04,0x03,0x00,0x04,0x80,0x00,0x00,0xff,0x80,0x01,0x00,0xaa,0x80,0x00,0x00,0xff,0xa0,0x01,0x00,0x00,0x02,
|
||||
0x03,0x00,0x08,0x80,0x02,0x00,0xff,0x80,0x58,0x00,0x00,0x04,0x00,0x00,0x0f,0x80,0x01,0x00,0xff,0x80,0x03,0x00,0xe4,0x80,0x02,0x00,0xe4,0x80,0x01,0x00,0x00,0x02,
|
||||
0x00,0x08,0x0f,0x80,0x00,0x00,0xe4,0x80,0xff,0xff,0x00,0x00,0x53,0x48,0x44,0x52,0xc8,0x01,0x00,0x00,0x40,0x00,0x00,0x00,0x72,0x00,0x00,0x00,0x59,0x00,0x00,0x04,
|
||||
0x46,0x8e,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x5a,0x00,0x00,0x03,0x00,0x60,0x10,0x00,0x00,0x00,0x00,0x00,0x58,0x18,0x00,0x04,0x00,0x70,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x55,0x55,0x00,0x00,0x62,0x10,0x00,0x03,0x32,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x62,0x10,0x00,0x03,0xf2,0x10,0x10,0x00,0x01,0x00,0x00,0x00,
|
||||
0x62,0x10,0x00,0x03,0xc2,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x65,0x00,0x00,0x03,0xf2,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x68,0x00,0x00,0x02,0x02,0x00,0x00,0x00,
|
||||
0x45,0x00,0x00,0x09,0xf2,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x7e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x07,0xf2,0x00,0x10,0x00,0x01,0x00,0x00,0x00,0x46,0x0e,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x1e,0x10,0x00,0x01,0x00,0x00,0x00,
|
||||
0x31,0x00,0x00,0x07,0x82,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x00,0x10,0x00,0x01,0x00,0x00,0x00,0x01,0x40,0x00,0x00,0x00,0x00,0x00,0x3f,0x1f,0x00,0x04,0x03,
|
||||
0x3a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x04,0x03,0x01,0x40,0x00,0x00,0xff,0xff,0xff,0xff,0x36,0x00,0x00,0x05,0xf2,0x20,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x46,0x0e,0x10,0x00,0x01,0x00,0x00,0x00,0x3e,0x00,0x00,0x01,0x15,0x00,0x00,0x01,0x0e,0x00,0x00,0x07,0x82,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x2a,0x10,0x10,0x00,
|
||||
0x02,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x82,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x00,0x10,0x80,0x41,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x20,0x00,0x08,0x82,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x0b,0x72,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x02,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x46,0x12,0x10,0x00,0x01,0x00,0x00,0x00,0x96,0x87,0x20,0x80,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x0a,
|
||||
0x72,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0xf6,0x0f,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x96,0x87,0x20,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x36,0x00,0x00,0x05,0x82,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x00,0x10,0x00,0x01,0x00,0x00,0x00,0x3e,0x00,0x00,0x01,0x53,0x54,0x41,0x54,
|
||||
0x74,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x52,0x44,0x45,0x46,0x44,0x01,0x00,0x00,
|
||||
0x01,0x00,0x00,0x00,0x98,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0x00,0x09,0x00,0x00,0x14,0x01,0x00,0x00,0x7c,0x00,0x00,0x00,
|
||||
0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x85,0x00,0x00,0x00,
|
||||
0x02,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x53,
|
||||
0x74,0x61,0x74,0x65,0x00,0x74,0x65,0x78,0x56,0x61,0x6c,0x75,0x65,0x00,0x24,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x73,0x00,0xab,0x8e,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
|
||||
0xb0,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
|
||||
0xe8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x66,0x6f,0x67,0x45,0x6e,0x64,0x00,0xab,0x00,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x43,0x6f,0x6c,0x6f,0x72,
|
||||
0x00,0xab,0xab,0xab,0x01,0x00,0x03,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x28,0x52,
|
||||
0x29,0x20,0x48,0x4c,0x53,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x20,0x43,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x20,0x31,0x30,0x2e,0x30,0x2e,0x31,0x30,0x30,0x31,
|
||||
0x31,0x2e,0x30,0x00,0x49,0x53,0x47,0x4e,0x64,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x00,0x00,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,
|
||||
0x0f,0x0f,0x00,0x00,0x5f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x0f,0x0c,0x00,0x00,0x54,0x45,0x58,0x43,
|
||||
0x4f,0x4f,0x52,0x44,0x00,0x43,0x4f,0x4c,0x4f,0x52,0x00,0x56,0x50,0x4f,0x53,0x00,0x4f,0x53,0x47,0x4e,0x2c,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,
|
||||
0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x53,0x56,0x5f,0x54,0x41,0x52,0x47,0x45,
|
||||
0x54,0x00,0xab,0xab,
|
||||
};
|
||||
static unsigned char ps_colored_density[1124] = {
|
||||
0x44,0x58,0x42,0x43,0xc9,0x89,0x8a,0x79,0x3a,0x0d,0x97,0x4f,0x21,0xd8,0xb8,0xda,0x7e,0x20,0xaf,0x48,0x01,0x00,0x00,0x00,0x64,0x04,0x00,0x00,0x06,0x00,0x00,0x00,
|
||||
0x38,0x00,0x00,0x00,0x30,0x01,0x00,0x00,0x68,0x02,0x00,0x00,0xe4,0x02,0x00,0x00,0xe4,0x03,0x00,0x00,0x30,0x04,0x00,0x00,0x41,0x6f,0x6e,0x39,0xf0,0x00,0x00,0x00,
|
||||
0xf0,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0xc0,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x01,0x00,0x24,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x24,0x00,
|
||||
0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0x51,0x00,0x00,0x05,0x01,0x00,0x0f,0xa0,0x3b,0xaa,0xb8,0x3f,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x00,0x00,0x0f,0xb0,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,
|
||||
0x01,0x00,0x0f,0xb0,0x06,0x00,0x00,0x02,0x00,0x00,0x08,0x80,0x01,0x00,0xff,0xb0,0x05,0x00,0x00,0x03,0x00,0x00,0x01,0x80,0x00,0x00,0xff,0x80,0x01,0x00,0xaa,0xb0,
|
||||
0x05,0x00,0x00,0x03,0x00,0x00,0x01,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0xa0,0x05,0x00,0x00,0x03,0x00,0x00,0x01,0x80,0x00,0x00,0x00,0x80,0x01,0x00,0x00,0xa0,
|
||||
0x0e,0x00,0x00,0x02,0x00,0x00,0x11,0x80,0x00,0x00,0x00,0x80,0x12,0x00,0x00,0x04,0x01,0x00,0x03,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0xe4,0xb0,0x00,0x00,0xc9,0xa0,
|
||||
0x12,0x00,0x00,0x04,0x01,0x00,0x04,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0xaa,0xb0,0x00,0x00,0xff,0xa0,0x01,0x00,0x00,0x02,0x01,0x00,0x08,0x80,0x00,0x00,0xff,0xb0,
|
||||
0x01,0x00,0x00,0x02,0x00,0x08,0x0f,0x80,0x01,0x00,0xe4,0x80,0xff,0xff,0x00,0x00,0x53,0x48,0x44,0x52,0x30,0x01,0x00,0x00,0x40,0x00,0x00,0x00,0x4c,0x00,0x00,0x00,
|
||||
0x59,0x00,0x00,0x04,0x46,0x8e,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x62,0x10,0x00,0x03,0xf2,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x62,0x10,0x00,0x03,
|
||||
0xc2,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x65,0x00,0x00,0x03,0xf2,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x68,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x0e,0x00,0x00,0x07,
|
||||
0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x2a,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x38,0x00,0x00,0x08,0x12,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x07,0x12,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,0x3b,0xaa,0xb8,0x3f,0x19,0x00,0x00,0x05,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x33,0x00,0x00,0x07,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,
|
||||
0x00,0x00,0x80,0x3f,0x00,0x00,0x00,0x09,0xe2,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x06,0x19,0x10,0x00,0x00,0x00,0x00,0x00,0x56,0x8e,0x20,0x80,0x41,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x0a,0x72,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x96,0x07,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x96,0x87,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x00,0x00,0x05,0x82,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x01,0x53,0x54,0x41,0x54,0x74,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,
|
||||
0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x52,0x44,0x45,0x46,0xf8,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x04,0xff,0xff,
|
||||
0x00,0x09,0x00,0x00,0xc8,0x00,0x00,0x00,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x73,0x00,0xab,0xab,0xab,0x3c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x60,0x00,0x00,0x00,
|
||||
0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xb8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x44,
|
||||
0x65,0x6e,0x73,0x69,0x74,0x79,0x00,0xab,0x00,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x43,0x6f,0x6c,0x6f,0x72,
|
||||
0x00,0xab,0xab,0xab,0x01,0x00,0x03,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x28,0x52,
|
||||
0x29,0x20,0x48,0x4c,0x53,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x20,0x43,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x20,0x31,0x30,0x2e,0x30,0x2e,0x31,0x30,0x30,0x31,
|
||||
0x31,0x2e,0x30,0x00,0x49,0x53,0x47,0x4e,0x44,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0x00,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,
|
||||
0x0f,0x0c,0x00,0x00,0x43,0x4f,0x4c,0x4f,0x52,0x00,0x56,0x50,0x4f,0x53,0x00,0xab,0x4f,0x53,0x47,0x4e,0x2c,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,
|
||||
0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x53,0x56,0x5f,0x54,0x41,0x52,0x47,0x45,
|
||||
0x54,0x00,0xab,0xab,
|
||||
};
|
||||
static unsigned char ps_textured_density[1436] = {
|
||||
0x44,0x58,0x42,0x43,0x04,0xf2,0x7d,0x33,0x2b,0xed,0x9b,0xe2,0xdf,0xfe,0xdf,0xce,0x3a,0xd5,0x73,0x9d,0x01,0x00,0x00,0x00,0x9c,0x05,0x00,0x00,0x06,0x00,0x00,0x00,
|
||||
0x38,0x00,0x00,0x00,0x88,0x01,0x00,0x00,0x30,0x03,0x00,0x00,0xac,0x03,0x00,0x00,0xfc,0x04,0x00,0x00,0x68,0x05,0x00,0x00,0x41,0x6f,0x6e,0x39,0x48,0x01,0x00,0x00,
|
||||
0x48,0x01,0x00,0x00,0x00,0x02,0xff,0xff,0x14,0x01,0x00,0x00,0x34,0x00,0x00,0x00,0x01,0x00,0x28,0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x34,0x00,0x01,0x00,0x24,0x00,
|
||||
0x00,0x00,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0x51,0x00,0x00,0x05,0x01,0x00,0x0f,0xa0,
|
||||
0x3b,0xaa,0xb8,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x00,0x00,0x03,0xb0,0x1f,0x00,0x00,0x02,
|
||||
0x00,0x00,0x00,0x80,0x01,0x00,0x0f,0xb0,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x02,0x00,0x0f,0xb0,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x90,0x00,0x08,0x0f,0xa0,
|
||||
0x42,0x00,0x00,0x03,0x00,0x00,0x0f,0x80,0x00,0x00,0xe4,0xb0,0x00,0x08,0xe4,0xa0,0x06,0x00,0x00,0x02,0x01,0x00,0x08,0x80,0x02,0x00,0xff,0xb0,0x05,0x00,0x00,0x03,
|
||||
0x01,0x00,0x01,0x80,0x01,0x00,0xff,0x80,0x02,0x00,0xaa,0xb0,0x05,0x00,0x00,0x03,0x01,0x00,0x01,0x80,0x01,0x00,0x00,0x80,0x00,0x00,0x00,0xa0,0x05,0x00,0x00,0x03,
|
||||
0x01,0x00,0x01,0x80,0x01,0x00,0x00,0x80,0x01,0x00,0x00,0xa0,0x0e,0x00,0x00,0x02,0x01,0x00,0x11,0x80,0x01,0x00,0x00,0x80,0x04,0x00,0x00,0x04,0x02,0x00,0x03,0x80,
|
||||
0x00,0x00,0xe4,0x80,0x01,0x00,0xe4,0xb0,0x00,0x00,0xc9,0xa1,0x04,0x00,0x00,0x04,0x02,0x00,0x04,0x80,0x00,0x00,0xaa,0x80,0x01,0x00,0xaa,0xb0,0x00,0x00,0xff,0xa1,
|
||||
0x05,0x00,0x00,0x03,0x00,0x00,0x08,0x80,0x00,0x00,0xff,0x80,0x01,0x00,0xff,0xb0,0x04,0x00,0x00,0x04,0x00,0x00,0x03,0x80,0x01,0x00,0x00,0x80,0x02,0x00,0xe4,0x80,
|
||||
0x00,0x00,0xc9,0xa0,0x04,0x00,0x00,0x04,0x00,0x00,0x04,0x80,0x01,0x00,0x00,0x80,0x02,0x00,0xaa,0x80,0x00,0x00,0xff,0xa0,0x01,0x00,0x00,0x02,0x00,0x08,0x0f,0x80,
|
||||
0x00,0x00,0xe4,0x80,0xff,0xff,0x00,0x00,0x53,0x48,0x44,0x52,0xa0,0x01,0x00,0x00,0x40,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x59,0x00,0x00,0x04,0x46,0x8e,0x20,0x00,
|
||||
0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x5a,0x00,0x00,0x03,0x00,0x60,0x10,0x00,0x00,0x00,0x00,0x00,0x58,0x18,0x00,0x04,0x00,0x70,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x55,0x55,0x00,0x00,0x62,0x10,0x00,0x03,0x32,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x62,0x10,0x00,0x03,0xf2,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x62,0x10,0x00,0x03,
|
||||
0xc2,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x65,0x00,0x00,0x03,0xf2,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x68,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x0e,0x00,0x00,0x07,
|
||||
0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x2a,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x38,0x00,0x00,0x08,0x12,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x07,0x12,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,0x3b,0xaa,0xb8,0x3f,0x19,0x00,0x00,0x05,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x33,0x00,0x00,0x07,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,
|
||||
0x00,0x00,0x80,0x3f,0x45,0x00,0x00,0x09,0xf2,0x00,0x10,0x00,0x01,0x00,0x00,0x00,0x46,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x7e,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x60,0x10,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x0b,0xe2,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x06,0x09,0x10,0x00,0x01,0x00,0x00,0x00,0x06,0x19,0x10,0x00,
|
||||
0x01,0x00,0x00,0x00,0x56,0x8e,0x20,0x80,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x07,0x12,0x00,0x10,0x00,0x01,0x00,0x00,0x00,
|
||||
0x3a,0x00,0x10,0x00,0x01,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x36,0x00,0x00,0x05,0x82,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,
|
||||
0x01,0x00,0x00,0x00,0x32,0x00,0x00,0x0a,0x72,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x96,0x07,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x96,0x87,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x01,0x53,0x54,0x41,0x54,0x74,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x52,0x44,0x45,0x46,0x48,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x98,0x00,0x00,0x00,0x03,0x00,0x00,0x00,
|
||||
0x1c,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0x00,0x09,0x00,0x00,0x18,0x01,0x00,0x00,0x7c,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x85,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x04,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x53,0x74,0x61,0x74,0x65,0x00,0x74,0x65,0x78,0x56,0x61,0x6c,0x75,
|
||||
0x65,0x00,0x24,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x73,0x00,0xab,0x8e,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xb0,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,
|
||||
0x04,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x44,0x65,0x6e,0x73,0x69,0x74,0x79,0x00,0xab,
|
||||
0x00,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x43,0x6f,0x6c,0x6f,0x72,0x00,0xab,0xab,0xab,0x01,0x00,0x03,0x00,
|
||||
0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x28,0x52,0x29,0x20,0x48,0x4c,0x53,0x4c,0x20,0x53,
|
||||
0x68,0x61,0x64,0x65,0x72,0x20,0x43,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x20,0x31,0x30,0x2e,0x30,0x2e,0x31,0x30,0x30,0x31,0x31,0x2e,0x30,0x00,0x49,0x53,0x47,0x4e,
|
||||
0x64,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x03,0x03,0x00,0x00,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0f,0x0f,0x00,0x00,0x5f,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x0f,0x0c,0x00,0x00,0x54,0x45,0x58,0x43,0x4f,0x4f,0x52,0x44,0x00,0x43,0x4f,0x4c,
|
||||
0x4f,0x52,0x00,0x56,0x50,0x4f,0x53,0x00,0x4f,0x53,0x47,0x4e,0x2c,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x53,0x56,0x5f,0x54,0x41,0x52,0x47,0x45,0x54,0x00,0xab,0xab,
|
||||
};
|
||||
static unsigned char ps_colored_test_density[1268] = {
|
||||
0x44,0x58,0x42,0x43,0x5e,0xda,0xb1,0x98,0xcc,0x08,0x0b,0xd0,0x04,0xe2,0xe9,0xd3,0xbf,0xdc,0x52,0xed,0x01,0x00,0x00,0x00,0xf4,0x04,0x00,0x00,0x06,0x00,0x00,0x00,
|
||||
0x38,0x00,0x00,0x00,0x70,0x01,0x00,0x00,0xf8,0x02,0x00,0x00,0x74,0x03,0x00,0x00,0x74,0x04,0x00,0x00,0xc0,0x04,0x00,0x00,0x41,0x6f,0x6e,0x39,0x30,0x01,0x00,0x00,
|
||||
0x30,0x01,0x00,0x00,0x00,0x02,0xff,0xff,0x00,0x01,0x00,0x00,0x30,0x00,0x00,0x00,0x01,0x00,0x24,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x24,0x00,
|
||||
0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0x51,0x00,0x00,0x05,0x01,0x00,0x0f,0xa0,0x00,0x00,0x00,0xbf,
|
||||
0x00,0x00,0x00,0x80,0x00,0x00,0x80,0xbf,0x3b,0xaa,0xb8,0x3f,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x00,0x00,0x0f,0xb0,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,
|
||||
0x01,0x00,0x0f,0xb0,0x02,0x00,0x00,0x03,0x00,0x00,0x08,0x80,0x00,0x00,0xff,0xb0,0x01,0x00,0x00,0xa0,0x58,0x00,0x00,0x04,0x01,0x00,0x0f,0x80,0x00,0x00,0xff,0x80,
|
||||
0x01,0x00,0x55,0xa0,0x01,0x00,0xaa,0xa0,0x41,0x00,0x00,0x01,0x01,0x00,0x0f,0x80,0x06,0x00,0x00,0x02,0x00,0x00,0x01,0x80,0x01,0x00,0xff,0xb0,0x05,0x00,0x00,0x03,
|
||||
0x00,0x00,0x01,0x80,0x00,0x00,0x00,0x80,0x01,0x00,0xaa,0xb0,0x05,0x00,0x00,0x03,0x00,0x00,0x01,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0xa0,0x05,0x00,0x00,0x03,
|
||||
0x00,0x00,0x01,0x80,0x00,0x00,0x00,0x80,0x01,0x00,0xff,0xa0,0x0e,0x00,0x00,0x02,0x00,0x00,0x11,0x80,0x00,0x00,0x00,0x80,0x01,0x00,0x00,0x02,0x01,0x00,0x08,0x80,
|
||||
0x00,0x00,0xff,0xb0,0x12,0x00,0x00,0x04,0x01,0x00,0x03,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0xe4,0xb0,0x00,0x00,0xc9,0xa0,0x12,0x00,0x00,0x04,0x01,0x00,0x04,0x80,
|
||||
0x00,0x00,0x00,0x80,0x00,0x00,0xaa,0xb0,0x00,0x00,0xff,0xa0,0x58,0x00,0x00,0x04,0x00,0x00,0x0f,0x80,0x00,0x00,0xff,0x80,0x01,0x00,0xe4,0x80,0x00,0x00,0xe4,0xb0,
|
||||
0x01,0x00,0x00,0x02,0x00,0x08,0x0f,0x80,0x00,0x00,0xe4,0x80,0xff,0xff,0x00,0x00,0x53,0x48,0x44,0x52,0x80,0x01,0x00,0x00,0x40,0x00,0x00,0x00,0x60,0x00,0x00,0x00,
|
||||
0x59,0x00,0x00,0x04,0x46,0x8e,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x62,0x10,0x00,0x03,0xf2,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x62,0x10,0x00,0x03,
|
||||
0xc2,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x65,0x00,0x00,0x03,0xf2,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x68,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x31,0x00,0x00,0x07,
|
||||
0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,0x00,0x00,0x00,0x3f,0x1f,0x00,0x04,0x03,0x0a,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0d,0x00,0x04,0x03,0x01,0x40,0x00,0x00,0xff,0xff,0xff,0xff,0x36,0x00,0x00,0x05,0xf2,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x1e,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x01,0x15,0x00,0x00,0x01,0x0e,0x00,0x00,0x07,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x2a,0x10,0x10,0x00,0x01,0x00,0x00,0x00,
|
||||
0x3a,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x38,0x00,0x00,0x08,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x07,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,
|
||||
0x3b,0xaa,0xb8,0x3f,0x19,0x00,0x00,0x05,0x12,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x33,0x00,0x00,0x07,0x12,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,0x00,0x00,0x80,0x3f,0x00,0x00,0x00,0x09,0xe2,0x00,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x06,0x19,0x10,0x00,0x00,0x00,0x00,0x00,0x56,0x8e,0x20,0x80,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x0a,0x72,0x20,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x06,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x96,0x07,0x10,0x00,0x00,0x00,0x00,0x00,0x96,0x87,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x36,0x00,0x00,0x05,0x82,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x01,0x53,0x54,0x41,0x54,0x74,0x00,0x00,0x00,
|
||||
0x0f,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
|
||||
0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x52,0x44,0x45,0x46,0xf8,0x00,0x00,0x00,0x01,0x00,0x00,0x00,
|
||||
0x48,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0x00,0x09,0x00,0x00,0xc8,0x00,0x00,0x00,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x73,
|
||||
0x00,0xab,0xab,0xab,0x3c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x90,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,
|
||||
0x02,0x00,0x00,0x00,0xb8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x44,0x65,0x6e,0x73,0x69,0x74,0x79,0x00,0xab,0x00,0x00,0x03,0x00,0x01,0x00,0x01,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x43,0x6f,0x6c,0x6f,0x72,0x00,0xab,0xab,0xab,0x01,0x00,0x03,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x28,0x52,0x29,0x20,0x48,0x4c,0x53,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x20,0x43,0x6f,
|
||||
0x6d,0x70,0x69,0x6c,0x65,0x72,0x20,0x31,0x30,0x2e,0x30,0x2e,0x31,0x30,0x30,0x31,0x31,0x2e,0x30,0x00,0x49,0x53,0x47,0x4e,0x44,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
|
||||
0x08,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0x00,0x3e,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0f,0x0c,0x00,0x00,0x43,0x4f,0x4c,0x4f,0x52,0x00,0x56,0x50,0x4f,0x53,0x00,0xab,
|
||||
0x4f,0x53,0x47,0x4e,0x2c,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x53,0x56,0x5f,0x54,0x41,0x52,0x47,0x45,0x54,0x00,0xab,0xab,
|
||||
};
|
||||
static unsigned char ps_textured_test_density[1596] = {
|
||||
0x44,0x58,0x42,0x43,0x9b,0x8f,0x1b,0x78,0xbc,0x92,0x9c,0xdf,0x5b,0x09,0x51,0xdd,0xc3,0xe8,0xb4,0x31,0x01,0x00,0x00,0x00,0x3c,0x06,0x00,0x00,0x06,0x00,0x00,0x00,
|
||||
0x38,0x00,0x00,0x00,0xd8,0x01,0x00,0x00,0xd0,0x03,0x00,0x00,0x4c,0x04,0x00,0x00,0x9c,0x05,0x00,0x00,0x08,0x06,0x00,0x00,0x41,0x6f,0x6e,0x39,0x98,0x01,0x00,0x00,
|
||||
0x98,0x01,0x00,0x00,0x00,0x02,0xff,0xff,0x64,0x01,0x00,0x00,0x34,0x00,0x00,0x00,0x01,0x00,0x28,0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x34,0x00,0x01,0x00,0x24,0x00,
|
||||
0x00,0x00,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0x51,0x00,0x00,0x05,0x01,0x00,0x0f,0xa0,
|
||||
0x00,0x00,0x00,0xbf,0x00,0x00,0x00,0x80,0x00,0x00,0x80,0xbf,0x3b,0xaa,0xb8,0x3f,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x00,0x00,0x03,0xb0,0x1f,0x00,0x00,0x02,
|
||||
0x00,0x00,0x00,0x80,0x01,0x00,0x0f,0xb0,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x02,0x00,0x0f,0xb0,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x90,0x00,0x08,0x0f,0xa0,
|
||||
0x42,0x00,0x00,0x03,0x00,0x00,0x0f,0x80,0x00,0x00,0xe4,0xb0,0x00,0x08,0xe4,0xa0,0x04,0x00,0x00,0x04,0x01,0x00,0x08,0x80,0x00,0x00,0xff,0x80,0x01,0x00,0xff,0xb0,
|
||||
0x01,0x00,0x00,0xa0,0x58,0x00,0x00,0x04,0x02,0x00,0x0f,0x80,0x01,0x00,0xff,0x80,0x01,0x00,0x55,0xa0,0x01,0x00,0xaa,0xa0,0x41,0x00,0x00,0x01,0x02,0x00,0x0f,0x80,
|
||||
0x05,0x00,0x00,0x03,0x02,0x00,0x0f,0x80,0x00,0x00,0xe4,0x80,0x01,0x00,0xe4,0xb0,0x04,0x00,0x00,0x04,0x01,0x00,0x03,0x80,0x00,0x00,0xe4,0x80,0x01,0x00,0xe4,0xb0,
|
||||
0x00,0x00,0xc9,0xa1,0x04,0x00,0x00,0x04,0x01,0x00,0x04,0x80,0x00,0x00,0xaa,0x80,0x01,0x00,0xaa,0xb0,0x00,0x00,0xff,0xa1,0x06,0x00,0x00,0x02,0x00,0x00,0x01,0x80,
|
||||
0x02,0x00,0xff,0xb0,0x05,0x00,0x00,0x03,0x00,0x00,0x01,0x80,0x00,0x00,0x00,0x80,0x02,0x00,0xaa,0xb0,0x05,0x00,0x00,0x03,0x00,0x00,0x01,0x80,0x00,0x00,0x00,0x80,
|
||||
0x00,0x00,0x00,0xa0,0x05,0x00,0x00,0x03,0x00,0x00,0x01,0x80,0x00,0x00,0x00,0x80,0x01,0x00,0xff,0xa0,0x0e,0x00,0x00,0x02,0x00,0x00,0x11,0x80,0x00,0x00,0x00,0x80,
|
||||
0x04,0x00,0x00,0x04,0x03,0x00,0x03,0x80,0x00,0x00,0x00,0x80,0x01,0x00,0xe4,0x80,0x00,0x00,0xc9,0xa0,0x04,0x00,0x00,0x04,0x03,0x00,0x04,0x80,0x00,0x00,0x00,0x80,
|
||||
0x01,0x00,0xaa,0x80,0x00,0x00,0xff,0xa0,0x01,0x00,0x00,0x02,0x03,0x00,0x08,0x80,0x02,0x00,0xff,0x80,0x58,0x00,0x00,0x04,0x00,0x00,0x0f,0x80,0x01,0x00,0xff,0x80,
|
||||
0x03,0x00,0xe4,0x80,0x02,0x00,0xe4,0x80,0x01,0x00,0x00,0x02,0x00,0x08,0x0f,0x80,0x00,0x00,0xe4,0x80,0xff,0xff,0x00,0x00,0x53,0x48,0x44,0x52,0xf0,0x01,0x00,0x00,
|
||||
0x40,0x00,0x00,0x00,0x7c,0x00,0x00,0x00,0x59,0x00,0x00,0x04,0x46,0x8e,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x5a,0x00,0x00,0x03,0x00,0x60,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x58,0x18,0x00,0x04,0x00,0x70,0x10,0x00,0x00,0x00,0x00,0x00,0x55,0x55,0x00,0x00,0x62,0x10,0x00,0x03,0x32,0x10,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x62,0x10,0x00,0x03,0xf2,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x62,0x10,0x00,0x03,0xc2,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x65,0x00,0x00,0x03,0xf2,0x20,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x68,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x45,0x00,0x00,0x09,0xf2,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x10,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x46,0x7e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x10,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x07,0xf2,0x00,0x10,0x00,0x01,0x00,0x00,0x00,0x46,0x0e,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x46,0x1e,0x10,0x00,0x01,0x00,0x00,0x00,0x31,0x00,0x00,0x07,0x82,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x00,0x10,0x00,0x01,0x00,0x00,0x00,
|
||||
0x01,0x40,0x00,0x00,0x00,0x00,0x00,0x3f,0x1f,0x00,0x04,0x03,0x3a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x04,0x03,0x01,0x40,0x00,0x00,0xff,0xff,0xff,0xff,
|
||||
0x36,0x00,0x00,0x05,0xf2,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x0e,0x10,0x00,0x01,0x00,0x00,0x00,0x3e,0x00,0x00,0x01,0x15,0x00,0x00,0x01,0x0e,0x00,0x00,0x07,
|
||||
0x82,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x2a,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x3a,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x38,0x00,0x00,0x08,0x82,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x3a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x0a,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x07,0x82,0x00,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x3a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,0x3b,0xaa,0xb8,0x3f,0x19,0x00,0x00,0x05,0x82,0x00,0x10,0x00,0x00,0x00,0x00,0x00,
|
||||
0x3a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x33,0x00,0x00,0x07,0x82,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x3a,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,
|
||||
0x00,0x00,0x80,0x3f,0x32,0x00,0x00,0x0b,0x72,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x46,0x12,0x10,0x00,0x01,0x00,0x00,0x00,
|
||||
0x96,0x87,0x20,0x80,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x0a,0x72,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0xf6,0x0f,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x46,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x96,0x87,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x00,0x00,0x05,0x82,0x20,0x10,0x00,
|
||||
0x00,0x00,0x00,0x00,0x3a,0x00,0x10,0x00,0x01,0x00,0x00,0x00,0x3e,0x00,0x00,0x01,0x53,0x54,0x41,0x54,0x74,0x00,0x00,0x00,0x11,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x52,0x44,0x45,0x46,0x48,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x98,0x00,0x00,0x00,0x03,0x00,0x00,0x00,
|
||||
0x1c,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0x00,0x09,0x00,0x00,0x18,0x01,0x00,0x00,0x7c,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x85,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x04,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x65,0x78,0x53,0x74,0x61,0x74,0x65,0x00,0x74,0x65,0x78,0x56,0x61,0x6c,0x75,
|
||||
0x65,0x00,0x24,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x73,0x00,0xab,0x8e,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xb0,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,
|
||||
0x04,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x44,0x65,0x6e,0x73,0x69,0x74,0x79,0x00,0xab,
|
||||
0x00,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x6f,0x67,0x43,0x6f,0x6c,0x6f,0x72,0x00,0xab,0xab,0xab,0x01,0x00,0x03,0x00,
|
||||
0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x28,0x52,0x29,0x20,0x48,0x4c,0x53,0x4c,0x20,0x53,
|
||||
0x68,0x61,0x64,0x65,0x72,0x20,0x43,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x20,0x31,0x30,0x2e,0x30,0x2e,0x31,0x30,0x30,0x31,0x31,0x2e,0x30,0x00,0x49,0x53,0x47,0x4e,
|
||||
0x64,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x03,0x03,0x00,0x00,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0f,0x0f,0x00,0x00,0x5f,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x0f,0x0c,0x00,0x00,0x54,0x45,0x58,0x43,0x4f,0x4f,0x52,0x44,0x00,0x43,0x4f,0x4c,
|
||||
0x4f,0x52,0x00,0x56,0x50,0x4f,0x53,0x00,0x4f,0x53,0x47,0x4e,0x2c,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x53,0x56,0x5f,0x54,0x41,0x52,0x47,0x45,0x54,0x00,0xab,0xab,
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user