Commit 1850492e by Mohan Maiya Committed by Commit Bot

Vulkan: Disable OES_vertex_type_10_10_10_2 on GLES 2.0

- Because of the difference in the SNORM to FLOAT conversion formula between GLES 2.0 and 3.0, OES_vertex_type_10_10_10_2 is disabled when the context version is lower than 3.0. - Modify test conversion formula to be compliant with GLES 3.0 equation Bug: angleproject:3868 Test: angle_end2end_tests --gtest_filter=VertexAttributeTest*Packed*Vulkan Change-Id: I8b85d8146ee05353bc40fa0022f05d6634c33110 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1792197 Commit-Queue: Mohan Maiya <m.maiya@samsung.com> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 2328d65a
......@@ -110,9 +110,9 @@
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000007.inc":
"bb62a58562d954c5a0946c291c2afca2",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000008.inc":
"b5340976023d009e8c80aa9798ac7680",
"5228214dc4d40eebed9b66806d604ef0",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000009.inc":
"cdcabde7e530a7030d377f3a01a78fec",
"18cf63360b3030cb637dd1129bd04e6b",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.0000000A.inc":
"61b2ac99ab77bea128bfe97dd34b4fa7",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.0000000B.inc":
......@@ -142,9 +142,9 @@
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000017.inc":
"c9a4c3100ce405279425855655f1ef50",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000018.inc":
"ccbcd91094e7e9308573b3033f674e2c",
"5f2b521b8c31ecf08d2776c554c0c699",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000019.inc":
"628e93148792a85a1fa0c688e1686a1d",
"4b364dc33cf595d2fa382b9321f48dbc",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.0000001A.inc":
"ee4f06ba87a3dde490e01a0ec4561e10",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.0000001B.inc":
......@@ -154,9 +154,9 @@
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.0000001D.inc":
"72bbe32670195bcf4be9d1edd8152178",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.0000001E.inc":
"6c4b93206f5b905fc384f9ea629ab91d",
"e5131c8ba46eaf2674aad854eb3bc787",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.0000001F.inc":
"e6269fe4949548993371aaef33c63dda",
"45f2705df7389be715506e9c3e484d74",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000020.inc":
"d79651c76fdfefb0949ae18e006a6d22",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000021.inc":
......@@ -170,9 +170,9 @@
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000025.inc":
"25b270092f8e6a1bfeb3c6f5e441d792",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000026.inc":
"5c71117a27b9b60653453a2a72a90cb5",
"a77252550fef5aa63bb49faecb6de265",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000027.inc":
"757a459d8b68e2c5e74c596ffbeecee5",
"1bac85ed8b670bbe4b68ffa4064bf31f",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000028.inc":
"d6cfcf49825f3da242d0f8935b0e30f6",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000029.inc":
......@@ -294,7 +294,7 @@
"src/libANGLE/renderer/vulkan/shaders/src/ConvertIndexIndirectLineLoop.comp":
"a543a28fc1fe53eefd5949ee3b4428f3",
"src/libANGLE/renderer/vulkan/shaders/src/ConvertVertex.comp":
"88d434e43a01906e6a6b1dd5d5e45cdc",
"6d034ff271e17c0a4f8a12b8eec2970d",
"src/libANGLE/renderer/vulkan/shaders/src/FullScreenQuad.vert":
"805ec8b2f87d4bd4242dc5b1c58ba3b4",
"src/libANGLE/renderer/vulkan/shaders/src/ImageClear.frag":
......
......@@ -824,7 +824,7 @@ const ExtensionInfoMap &GetExtensionInfoMap()
map["GL_EXT_color_buffer_float"] = enableableExtension(&Extensions::colorBufferFloat);
map["GL_OES_vertex_half_float"] = enableableExtension(&Extensions::vertexHalfFloat);
map["GL_OES_vertex_array_object"] = enableableExtension(&Extensions::vertexArrayObject);
map["GL_OES_vertex_type_10_10_10_2"] = enableableExtension(&Extensions::vertexAttribType101010102);
map["GL_OES_vertex_type_10_10_10_2"] = enableableExtension(&Extensions::vertexAttribType1010102);
map["GL_KHR_debug"] = esOnlyExtension(&Extensions::debug);
map["GL_OES_texture_border_clamp"] = enableableExtension(&Extensions::textureBorderClamp);
// TODO(jmadill): Enable this when complete.
......
......@@ -386,7 +386,7 @@ struct Extensions
bool vertexArrayObject = false;
// GL_OES_vertex_type_10_10_10_2
bool vertexAttribType101010102 = false;
bool vertexAttribType1010102 = false;
// GL_KHR_debug
bool debug = false;
......
......@@ -3283,6 +3283,11 @@ Extensions Context::generateSupportedExtensions() const
supportedExtensions.textureFloatLinear = false;
supportedExtensions.textureHalfFloatLinear = false;
}
// Because of the difference in the SNORM to FLOAT conversion formula
// between GLES 2.0 and 3.0, vertex type 10_10_10_2 is disabled
// when the context version is lower than 3.0
supportedExtensions.vertexAttribType1010102 = false;
}
if (getClientVersion() < ES_3_1)
......@@ -9351,8 +9356,8 @@ void StateCache::updateVertexAttribTypesValidation(Context *context)
? VertexAttribTypeCase::Valid
: VertexAttribTypeCase::Invalid;
VertexAttribTypeCase vertexType101010102Validity =
(context->getExtensions().vertexAttribType101010102) ? VertexAttribTypeCase::ValidSize3or4
VertexAttribTypeCase vertexType1010102Validity =
(context->getExtensions().vertexAttribType1010102) ? VertexAttribTypeCase::ValidSize3or4
: VertexAttribTypeCase::Invalid;
if (context->getClientMajorVersion() <= 2)
......@@ -9365,8 +9370,6 @@ void StateCache::updateVertexAttribTypesValidation(Context *context)
{VertexAttribType::Float, VertexAttribTypeCase::Valid},
{VertexAttribType::Fixed, VertexAttribTypeCase::Valid},
{VertexAttribType::HalfFloatOES, halfFloatValidity},
{VertexAttribType::Int1010102, vertexType101010102Validity},
{VertexAttribType::UnsignedInt1010102, vertexType101010102Validity},
}};
}
else
......@@ -9384,8 +9387,8 @@ void StateCache::updateVertexAttribTypesValidation(Context *context)
{VertexAttribType::Int2101010, VertexAttribTypeCase::ValidSize4Only},
{VertexAttribType::HalfFloatOES, halfFloatValidity},
{VertexAttribType::UnsignedInt2101010, VertexAttribTypeCase::ValidSize4Only},
{VertexAttribType::Int1010102, vertexType101010102Validity},
{VertexAttribType::UnsignedInt1010102, vertexType101010102Validity},
{VertexAttribType::Int1010102, vertexType1010102Validity},
{VertexAttribType::UnsignedInt1010102, vertexType1010102Validity},
}};
mCachedIntegerVertexAttribTypesValidation = {{
......
......@@ -50,6 +50,18 @@ void CopyXYZ10W2ToXYZW32FVertexData(const uint8_t *input,
size_t count,
uint8_t *output);
template <bool isSigned, bool normalized>
void CopyXYZ10ToXYZW32FVertexData(const uint8_t *input,
size_t stride,
size_t count,
uint8_t *output);
template <bool isSigned, bool normalized>
void CopyW2XYZ10ToXYZW32FVertexData(const uint8_t *input,
size_t stride,
size_t count,
uint8_t *output);
} // namespace rx
#include "copyvertex.inc.h"
......
......@@ -193,8 +193,8 @@ inline void CopyTo32FVertexData(const uint8_t *input, size_t stride, size_t coun
{
if (NL::is_signed)
{
const float divisor = 1.0f / (2 * static_cast<float>(NL::max()) + 1);
offsetOutput[j] = (2 * static_cast<float>(offsetInput[j]) + 1) * divisor;
offsetOutput[j] = static_cast<float>(offsetInput[j]) / NL::max();
offsetOutput[j] = (offsetOutput[j] >= -1.0f) ? (offsetOutput[j]) : (-1.0f);
}
else
{
......
......@@ -77,137 +77,138 @@ const uint32_t kConvertVertex_comp_00000008[] = {
0x00000006,0x0004002b,0x00000006,0x00000076,0x00000020,0x00040020,0x00000078,0x00000007,
0x00000028,0x0004002b,0x00000028,0x0000007c,0xffffffff,0x0004002b,0x00000028,0x0000007e,
0x00000001,0x00040020,0x0000008e,0x00000007,0x00000052,0x0004002b,0x00000006,0x00000092,
0x00000001,0x0004002b,0x00000006,0x00000097,0x00000000,0x0004002b,0x00000011,0x000000aa,
0x40000000,0x0004002b,0x00000011,0x000000ae,0x3f800000,0x0003001d,0x000000c0,0x00000006,
0x0003001e,0x000000c1,0x000000c0,0x00040020,0x000000c2,0x00000002,0x000000c1,0x0004003b,
0x000000c2,0x000000c3,0x00000002,0x00040017,0x000000c4,0x00000006,0x00000003,0x00040020,
0x000000c5,0x00000001,0x000000c4,0x0004003b,0x000000c5,0x000000c6,0x00000001,0x00040020,
0x000000c7,0x00000001,0x00000006,0x0004002b,0x00000028,0x000000ca,0x00000003,0x0004002b,
0x00000006,0x00000103,0x00000040,0x0006002c,0x000000c4,0x00000104,0x00000103,0x00000092,
0x00000092,0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,
0x0004003b,0x00000007,0x000000d9,0x00000007,0x0004003b,0x00000007,0x000000da,0x00000007,
0x0004003b,0x00000007,0x000000e2,0x00000007,0x0004003b,0x00000016,0x000000ef,0x00000007,
0x0004003b,0x00000007,0x000000f0,0x00000007,0x0004003b,0x00000016,0x000000f3,0x00000007,
0x0004003b,0x00000016,0x000000f4,0x00000007,0x0004003b,0x00000007,0x000000f7,0x00000007,
0x0004003b,0x00000016,0x000000f9,0x00000007,0x0004003b,0x00000007,0x00000100,0x00000007,
0x00050041,0x000000c7,0x000000d1,0x000000c6,0x00000097,0x0004003d,0x00000006,0x000000d2,
0x000000d1,0x00050041,0x0000002a,0x000000d3,0x00000027,0x00000063,0x0004003d,0x00000006,
0x000000d4,0x000000d3,0x000500ae,0x00000052,0x000000d5,0x000000d2,0x000000d4,0x000300f7,
0x000000d7,0x00000000,0x000400fa,0x000000d5,0x000000d6,0x000000d7,0x000200f8,0x000000d6,
0x000100fd,0x000200f8,0x000000d7,0x0003003e,0x000000d9,0x00000097,0x0003003e,0x000000da,
0x00000097,0x000200f9,0x000000db,0x000200f8,0x000000db,0x000400f6,0x000000dd,0x000000de,
0x00000000,0x000200f9,0x000000df,0x000200f8,0x000000df,0x0004003d,0x00000006,0x000000e0,
0x000000da,0x000500b0,0x00000052,0x000000e1,0x000000e0,0x00000092,0x000400fa,0x000000e1,
0x000000dc,0x000000dd,0x000200f8,0x000000dc,0x00050041,0x000000c7,0x000000e3,0x000000c6,
0x00000097,0x0004003d,0x00000006,0x000000e4,0x000000e3,0x00050084,0x00000006,0x000000e5,
0x000000e4,0x00000092,0x0004003d,0x00000006,0x000000e6,0x000000da,0x00050080,0x00000006,
0x000000e7,0x000000e5,0x000000e6,0x0003003e,0x000000e2,0x000000e7,0x0004003d,0x00000006,
0x000000e8,0x000000e2,0x00050041,0x0000002a,0x000000e9,0x00000027,0x0000007e,0x0004003d,
0x00000006,0x000000ea,0x000000e9,0x000500ae,0x00000052,0x000000eb,0x000000e8,0x000000ea,
0x000300f7,0x000000ed,0x00000000,0x000400fa,0x000000eb,0x000000ec,0x000000ed,0x000200f8,
0x000000ec,0x000200f9,0x000000dd,0x000200f8,0x000000ed,0x0004003d,0x00000006,0x000000f1,
0x000000e2,0x0003003e,0x000000f0,0x000000f1,0x00050039,0x00000011,0x000000f2,0x00000014,
0x000000f0,0x0003003e,0x000000ef,0x000000f2,0x0004003d,0x00000011,0x000000f5,0x000000ef,
0x0003003e,0x000000f4,0x000000f5,0x00050039,0x00000011,0x000000f6,0x00000019,0x000000f4,
0x0003003e,0x000000f3,0x000000f6,0x0004003d,0x00000006,0x000000f8,0x000000e2,0x0003003e,
0x000000f7,0x000000f8,0x0004003d,0x00000011,0x000000fa,0x000000f3,0x0003003e,0x000000f9,
0x000000fa,0x00060039,0x00000006,0x000000fb,0x0000001e,0x000000f7,0x000000f9,0x0004003d,
0x00000006,0x000000fc,0x000000d9,0x000500c5,0x00000006,0x000000fd,0x000000fc,0x000000fb,
0x0003003e,0x000000d9,0x000000fd,0x000200f9,0x000000de,0x000200f8,0x000000de,0x0004003d,
0x00000006,0x000000fe,0x000000da,0x00050080,0x00000006,0x000000ff,0x000000fe,0x0000007e,
0x0003003e,0x000000da,0x000000ff,0x000200f9,0x000000db,0x000200f8,0x000000dd,0x0004003d,
0x00000006,0x00000101,0x000000d9,0x0003003e,0x00000100,0x00000101,0x00050039,0x00000002,
0x00000102,0x00000022,0x00000100,0x000100fd,0x00010038,0x00050036,0x00000006,0x0000000b,
0x00000000,0x00000008,0x00030037,0x00000007,0x00000009,0x00030037,0x00000007,0x0000000a,
0x000200f8,0x0000000c,0x0004003d,0x00000006,0x00000024,0x00000009,0x00050041,0x0000002a,
0x0000002b,0x00000027,0x00000029,0x0004003d,0x00000006,0x0000002c,0x0000002b,0x00050084,
0x00000006,0x0000002d,0x00000024,0x0000002c,0x0004003d,0x00000006,0x0000002e,0x0000000a,
0x00050041,0x0000002a,0x00000030,0x00000027,0x0000002f,0x0004003d,0x00000006,0x00000031,
0x00000030,0x00050084,0x00000006,0x00000032,0x0000002e,0x00000031,0x00050080,0x00000006,
0x00000033,0x0000002d,0x00000032,0x00050041,0x0000002a,0x00000035,0x00000027,0x00000034,
0x0004003d,0x00000006,0x00000036,0x00000035,0x00050080,0x00000006,0x00000037,0x00000033,
0x00000036,0x000200fe,0x00000037,0x00010038,0x00050036,0x00000006,0x0000000f,0x00000000,
0x00000008,0x00030037,0x00000007,0x0000000d,0x00030037,0x00000007,0x0000000e,0x000200f8,
0x00000010,0x0004003b,0x00000007,0x0000003a,0x00000007,0x0004003d,0x00000006,0x0000003b,
0x0000000d,0x00050089,0x00000006,0x0000003d,0x0000003b,0x0000003c,0x00050084,0x00000006,
0x0000003f,0x0000003d,0x0000003e,0x0003003e,0x0000003a,0x0000003f,0x0004003d,0x00000006,
0x00000040,0x0000003a,0x000200fe,0x00000040,0x00010038,0x00050036,0x00000011,0x00000014,
0x00000000,0x00000012,0x00030037,0x00000007,0x00000013,0x000200f8,0x00000015,0x0004003b,
0x00000007,0x00000043,0x00000007,0x0004003b,0x00000007,0x00000049,0x00000007,0x0004003b,
0x00000007,0x00000058,0x00000007,0x0004003b,0x00000007,0x00000059,0x00000007,0x0004003b,
0x00000007,0x0000005b,0x00000007,0x0004003b,0x00000007,0x0000005e,0x00000007,0x0004003b,
0x00000007,0x00000069,0x00000007,0x0004003b,0x00000007,0x0000006a,0x00000007,0x0004003b,
0x00000007,0x0000006c,0x00000007,0x0004003b,0x00000007,0x00000070,0x00000007,0x0004003b,
0x00000007,0x00000074,0x00000007,0x0004003b,0x00000078,0x00000079,0x00000007,0x0004003b,
0x00000007,0x00000084,0x00000007,0x0004003b,0x0000008e,0x0000008f,0x00000007,0x0004003b,
0x00000007,0x00000099,0x00000007,0x0004003b,0x00000078,0x0000009b,0x00000007,0x0004003b,
0x00000078,0x000000a6,0x00000007,0x0004003b,0x00000016,0x000000a9,0x00000007,0x0004003d,
0x00000006,0x00000044,0x00000013,0x00050041,0x0000002a,0x00000046,0x00000027,0x00000045,
0x0004003d,0x00000006,0x00000047,0x00000046,0x00050086,0x00000006,0x00000048,0x00000044,
0x00000047,0x0003003e,0x00000043,0x00000048,0x0004003d,0x00000006,0x0000004a,0x00000013,
0x00050041,0x0000002a,0x0000004b,0x00000027,0x00000045,0x0004003d,0x00000006,0x0000004c,
0x0000004b,0x00050089,0x00000006,0x0000004d,0x0000004a,0x0000004c,0x0003003e,0x00000049,
0x0000004d,0x0004003d,0x00000006,0x0000004e,0x00000049,0x00050041,0x0000002a,0x00000050,
0x00000027,0x0000004f,0x0004003d,0x00000006,0x00000051,0x00000050,0x000500ae,0x00000052,
0x00000053,0x0000004e,0x00000051,0x000300f7,0x00000055,0x00000000,0x000400fa,0x00000053,
0x00000054,0x00000055,0x000200f8,0x00000054,0x000200fe,0x00000056,0x000200f8,0x00000055,
0x0004003d,0x00000006,0x0000005a,0x00000043,0x0003003e,0x00000059,0x0000005a,0x0004003d,
0x00000006,0x0000005c,0x00000049,0x0003003e,0x0000005b,0x0000005c,0x00060039,0x00000006,
0x0000005d,0x0000000b,0x00000059,0x0000005b,0x0003003e,0x00000058,0x0000005d,0x0004003d,
0x00000006,0x00000064,0x00000058,0x00050086,0x00000006,0x00000065,0x00000064,0x0000003c,
0x00060041,0x00000066,0x00000067,0x00000062,0x00000063,0x00000065,0x0004003d,0x00000006,
0x00000068,0x00000067,0x0003003e,0x0000005e,0x00000068,0x0004003d,0x00000006,0x0000006b,
0x00000058,0x0003003e,0x0000006a,0x0000006b,0x00050041,0x0000002a,0x0000006d,0x00000027,
0x0000002f,0x0004003d,0x00000006,0x0000006e,0x0000006d,0x0003003e,0x0000006c,0x0000006e,
0x00060039,0x00000006,0x0000006f,0x0000000f,0x0000006a,0x0000006c,0x0003003e,0x00000069,
0x0000006f,0x00050041,0x0000002a,0x00000071,0x00000027,0x0000002f,0x0004003d,0x00000006,
0x00000072,0x00000071,0x00050084,0x00000006,0x00000073,0x00000072,0x0000003e,0x0003003e,
0x00000070,0x00000073,0x0004003d,0x00000006,0x00000075,0x00000070,0x000500aa,0x00000052,
0x00000077,0x00000075,0x00000076,0x000300f7,0x0000007b,0x00000000,0x000400fa,0x00000077,
0x0000007a,0x0000007d,0x000200f8,0x0000007a,0x0003003e,0x00000079,0x0000007c,0x000200f9,
0x0000007b,0x000200f8,0x0000007d,0x0004003d,0x00000006,0x0000007f,0x00000070,0x000500c4,
0x00000028,0x00000080,0x0000007e,0x0000007f,0x00050082,0x00000028,0x00000081,0x00000080,
0x0000007e,0x0003003e,0x00000079,0x00000081,0x000200f9,0x0000007b,0x000200f8,0x0000007b,
0x0004003d,0x00000028,0x00000082,0x00000079,0x0004007c,0x00000006,0x00000083,0x00000082,
0x0003003e,0x00000074,0x00000083,0x0004003d,0x00000006,0x00000085,0x0000005e,0x0004003d,
0x00000006,0x00000086,0x00000069,0x000500c2,0x00000006,0x00000087,0x00000085,0x00000086,
0x0004003d,0x00000006,0x00000088,0x00000074,0x000500c7,0x00000006,0x00000089,0x00000087,
0x00000088,0x0003003e,0x00000084,0x00000089,0x0004003d,0x00000006,0x0000008a,0x00000070,
0x000500b0,0x00000052,0x0000008b,0x0000008a,0x00000076,0x000300f7,0x0000008d,0x00000000,
0x000400fa,0x0000008b,0x0000008c,0x0000008d,0x000200f8,0x0000008c,0x0004003d,0x00000006,
0x00000090,0x00000084,0x0004003d,0x00000006,0x00000091,0x00000070,0x00050082,0x00000006,
0x00000093,0x00000091,0x00000092,0x000500c4,0x00000028,0x00000094,0x0000007e,0x00000093,
0x0004007c,0x00000006,0x00000095,0x00000094,0x000500c7,0x00000006,0x00000096,0x00000090,
0x00000095,0x000500ab,0x00000052,0x00000098,0x00000096,0x00000097,0x0003003e,0x0000008f,
0x00000098,0x0004003d,0x00000052,0x0000009a,0x0000008f,0x000300f7,0x0000009d,0x00000000,
0x000400fa,0x0000009a,0x0000009c,0x000000a0,0x000200f8,0x0000009c,0x0004003d,0x00000006,
0x0000009e,0x00000070,0x000500c4,0x00000028,0x0000009f,0x0000007c,0x0000009e,0x0003003e,
0x0000009b,0x0000009f,0x000200f9,0x0000009d,0x000200f8,0x000000a0,0x0003003e,0x0000009b,
0x00000063,0x000200f9,0x0000009d,0x000200f8,0x0000009d,0x0004003d,0x00000028,0x000000a1,
0x0000009b,0x0004007c,0x00000006,0x000000a2,0x000000a1,0x0003003e,0x00000099,0x000000a2,
0x0004003d,0x00000006,0x000000a3,0x00000099,0x0004003d,0x00000006,0x000000a4,0x00000084,
0x000500c5,0x00000006,0x000000a5,0x000000a4,0x000000a3,0x0003003e,0x00000084,0x000000a5,
0x000200f9,0x0000008d,0x000200f8,0x0000008d,0x0004003d,0x00000006,0x000000a7,0x00000084,
0x0004007c,0x00000028,0x000000a8,0x000000a7,0x0003003e,0x000000a6,0x000000a8,0x0004003d,
0x00000028,0x000000ab,0x000000a6,0x0004006f,0x00000011,0x000000ac,0x000000ab,0x00050085,
0x00000011,0x000000ad,0x000000aa,0x000000ac,0x00050081,0x00000011,0x000000af,0x000000ad,
0x000000ae,0x0004003d,0x00000006,0x000000b0,0x00000074,0x00040070,0x00000011,0x000000b1,
0x000000b0,0x00050088,0x00000011,0x000000b2,0x000000af,0x000000b1,0x0003003e,0x000000a9,
0x000000b2,0x0004003d,0x00000011,0x000000b3,0x000000a9,0x000200fe,0x000000b3,0x00010038,
0x00050036,0x00000011,0x00000019,0x00000000,0x00000017,0x00030037,0x00000016,0x00000018,
0x000200f8,0x0000001a,0x0004003d,0x00000011,0x000000b6,0x00000018,0x000200fe,0x000000b6,
0x00010038,0x00050036,0x00000006,0x0000001e,0x00000000,0x0000001b,0x00030037,0x00000007,
0x0000001c,0x00030037,0x00000016,0x0000001d,0x000200f8,0x0000001f,0x0004003b,0x00000007,
0x000000b9,0x00000007,0x0004003d,0x00000011,0x000000ba,0x0000001d,0x0004007c,0x00000028,
0x000000bb,0x000000ba,0x0004007c,0x00000006,0x000000bc,0x000000bb,0x0003003e,0x000000b9,
0x000000bc,0x0004003d,0x00000006,0x000000bd,0x000000b9,0x000200fe,0x000000bd,0x00010038,
0x00050036,0x00000002,0x00000022,0x00000000,0x00000020,0x00030037,0x00000007,0x00000021,
0x000200f8,0x00000023,0x00050041,0x000000c7,0x000000c8,0x000000c6,0x00000097,0x0004003d,
0x00000006,0x000000c9,0x000000c8,0x00050041,0x0000002a,0x000000cb,0x00000027,0x000000ca,
0x0004003d,0x00000006,0x000000cc,0x000000cb,0x00050086,0x00000006,0x000000cd,0x000000cc,
0x0000003c,0x00050080,0x00000006,0x000000ce,0x000000c9,0x000000cd,0x0004003d,0x00000006,
0x000000cf,0x00000021,0x00060041,0x00000066,0x000000d0,0x000000c3,0x00000063,0x000000ce,
0x0003003e,0x000000d0,0x000000cf,0x000100fd,0x00010038
0x00000001,0x0004002b,0x00000006,0x00000097,0x00000000,0x0004002b,0x00000011,0x000000b1,
0xbf800000,0x0003001d,0x000000c0,0x00000006,0x0003001e,0x000000c1,0x000000c0,0x00040020,
0x000000c2,0x00000002,0x000000c1,0x0004003b,0x000000c2,0x000000c3,0x00000002,0x00040017,
0x000000c4,0x00000006,0x00000003,0x00040020,0x000000c5,0x00000001,0x000000c4,0x0004003b,
0x000000c5,0x000000c6,0x00000001,0x00040020,0x000000c7,0x00000001,0x00000006,0x0004002b,
0x00000028,0x000000ca,0x00000003,0x0004002b,0x00000006,0x00000103,0x00000040,0x0006002c,
0x000000c4,0x00000104,0x00000103,0x00000092,0x00000092,0x00050036,0x00000002,0x00000004,
0x00000000,0x00000003,0x000200f8,0x00000005,0x0004003b,0x00000007,0x000000d9,0x00000007,
0x0004003b,0x00000007,0x000000da,0x00000007,0x0004003b,0x00000007,0x000000e2,0x00000007,
0x0004003b,0x00000016,0x000000ef,0x00000007,0x0004003b,0x00000007,0x000000f0,0x00000007,
0x0004003b,0x00000016,0x000000f3,0x00000007,0x0004003b,0x00000016,0x000000f4,0x00000007,
0x0004003b,0x00000007,0x000000f7,0x00000007,0x0004003b,0x00000016,0x000000f9,0x00000007,
0x0004003b,0x00000007,0x00000100,0x00000007,0x00050041,0x000000c7,0x000000d1,0x000000c6,
0x00000097,0x0004003d,0x00000006,0x000000d2,0x000000d1,0x00050041,0x0000002a,0x000000d3,
0x00000027,0x00000063,0x0004003d,0x00000006,0x000000d4,0x000000d3,0x000500ae,0x00000052,
0x000000d5,0x000000d2,0x000000d4,0x000300f7,0x000000d7,0x00000000,0x000400fa,0x000000d5,
0x000000d6,0x000000d7,0x000200f8,0x000000d6,0x000100fd,0x000200f8,0x000000d7,0x0003003e,
0x000000d9,0x00000097,0x0003003e,0x000000da,0x00000097,0x000200f9,0x000000db,0x000200f8,
0x000000db,0x000400f6,0x000000dd,0x000000de,0x00000000,0x000200f9,0x000000df,0x000200f8,
0x000000df,0x0004003d,0x00000006,0x000000e0,0x000000da,0x000500b0,0x00000052,0x000000e1,
0x000000e0,0x00000092,0x000400fa,0x000000e1,0x000000dc,0x000000dd,0x000200f8,0x000000dc,
0x00050041,0x000000c7,0x000000e3,0x000000c6,0x00000097,0x0004003d,0x00000006,0x000000e4,
0x000000e3,0x00050084,0x00000006,0x000000e5,0x000000e4,0x00000092,0x0004003d,0x00000006,
0x000000e6,0x000000da,0x00050080,0x00000006,0x000000e7,0x000000e5,0x000000e6,0x0003003e,
0x000000e2,0x000000e7,0x0004003d,0x00000006,0x000000e8,0x000000e2,0x00050041,0x0000002a,
0x000000e9,0x00000027,0x0000007e,0x0004003d,0x00000006,0x000000ea,0x000000e9,0x000500ae,
0x00000052,0x000000eb,0x000000e8,0x000000ea,0x000300f7,0x000000ed,0x00000000,0x000400fa,
0x000000eb,0x000000ec,0x000000ed,0x000200f8,0x000000ec,0x000200f9,0x000000dd,0x000200f8,
0x000000ed,0x0004003d,0x00000006,0x000000f1,0x000000e2,0x0003003e,0x000000f0,0x000000f1,
0x00050039,0x00000011,0x000000f2,0x00000014,0x000000f0,0x0003003e,0x000000ef,0x000000f2,
0x0004003d,0x00000011,0x000000f5,0x000000ef,0x0003003e,0x000000f4,0x000000f5,0x00050039,
0x00000011,0x000000f6,0x00000019,0x000000f4,0x0003003e,0x000000f3,0x000000f6,0x0004003d,
0x00000006,0x000000f8,0x000000e2,0x0003003e,0x000000f7,0x000000f8,0x0004003d,0x00000011,
0x000000fa,0x000000f3,0x0003003e,0x000000f9,0x000000fa,0x00060039,0x00000006,0x000000fb,
0x0000001e,0x000000f7,0x000000f9,0x0004003d,0x00000006,0x000000fc,0x000000d9,0x000500c5,
0x00000006,0x000000fd,0x000000fc,0x000000fb,0x0003003e,0x000000d9,0x000000fd,0x000200f9,
0x000000de,0x000200f8,0x000000de,0x0004003d,0x00000006,0x000000fe,0x000000da,0x00050080,
0x00000006,0x000000ff,0x000000fe,0x0000007e,0x0003003e,0x000000da,0x000000ff,0x000200f9,
0x000000db,0x000200f8,0x000000dd,0x0004003d,0x00000006,0x00000101,0x000000d9,0x0003003e,
0x00000100,0x00000101,0x00050039,0x00000002,0x00000102,0x00000022,0x00000100,0x000100fd,
0x00010038,0x00050036,0x00000006,0x0000000b,0x00000000,0x00000008,0x00030037,0x00000007,
0x00000009,0x00030037,0x00000007,0x0000000a,0x000200f8,0x0000000c,0x0004003d,0x00000006,
0x00000024,0x00000009,0x00050041,0x0000002a,0x0000002b,0x00000027,0x00000029,0x0004003d,
0x00000006,0x0000002c,0x0000002b,0x00050084,0x00000006,0x0000002d,0x00000024,0x0000002c,
0x0004003d,0x00000006,0x0000002e,0x0000000a,0x00050041,0x0000002a,0x00000030,0x00000027,
0x0000002f,0x0004003d,0x00000006,0x00000031,0x00000030,0x00050084,0x00000006,0x00000032,
0x0000002e,0x00000031,0x00050080,0x00000006,0x00000033,0x0000002d,0x00000032,0x00050041,
0x0000002a,0x00000035,0x00000027,0x00000034,0x0004003d,0x00000006,0x00000036,0x00000035,
0x00050080,0x00000006,0x00000037,0x00000033,0x00000036,0x000200fe,0x00000037,0x00010038,
0x00050036,0x00000006,0x0000000f,0x00000000,0x00000008,0x00030037,0x00000007,0x0000000d,
0x00030037,0x00000007,0x0000000e,0x000200f8,0x00000010,0x0004003b,0x00000007,0x0000003a,
0x00000007,0x0004003d,0x00000006,0x0000003b,0x0000000d,0x00050089,0x00000006,0x0000003d,
0x0000003b,0x0000003c,0x00050084,0x00000006,0x0000003f,0x0000003d,0x0000003e,0x0003003e,
0x0000003a,0x0000003f,0x0004003d,0x00000006,0x00000040,0x0000003a,0x000200fe,0x00000040,
0x00010038,0x00050036,0x00000011,0x00000014,0x00000000,0x00000012,0x00030037,0x00000007,
0x00000013,0x000200f8,0x00000015,0x0004003b,0x00000007,0x00000043,0x00000007,0x0004003b,
0x00000007,0x00000049,0x00000007,0x0004003b,0x00000007,0x00000058,0x00000007,0x0004003b,
0x00000007,0x00000059,0x00000007,0x0004003b,0x00000007,0x0000005b,0x00000007,0x0004003b,
0x00000007,0x0000005e,0x00000007,0x0004003b,0x00000007,0x00000069,0x00000007,0x0004003b,
0x00000007,0x0000006a,0x00000007,0x0004003b,0x00000007,0x0000006c,0x00000007,0x0004003b,
0x00000007,0x00000070,0x00000007,0x0004003b,0x00000007,0x00000074,0x00000007,0x0004003b,
0x00000078,0x00000079,0x00000007,0x0004003b,0x00000007,0x00000084,0x00000007,0x0004003b,
0x0000008e,0x0000008f,0x00000007,0x0004003b,0x00000007,0x00000099,0x00000007,0x0004003b,
0x00000078,0x0000009b,0x00000007,0x0004003b,0x00000078,0x000000a6,0x00000007,0x0004003b,
0x00000016,0x000000a9,0x00000007,0x0004003d,0x00000006,0x00000044,0x00000013,0x00050041,
0x0000002a,0x00000046,0x00000027,0x00000045,0x0004003d,0x00000006,0x00000047,0x00000046,
0x00050086,0x00000006,0x00000048,0x00000044,0x00000047,0x0003003e,0x00000043,0x00000048,
0x0004003d,0x00000006,0x0000004a,0x00000013,0x00050041,0x0000002a,0x0000004b,0x00000027,
0x00000045,0x0004003d,0x00000006,0x0000004c,0x0000004b,0x00050089,0x00000006,0x0000004d,
0x0000004a,0x0000004c,0x0003003e,0x00000049,0x0000004d,0x0004003d,0x00000006,0x0000004e,
0x00000049,0x00050041,0x0000002a,0x00000050,0x00000027,0x0000004f,0x0004003d,0x00000006,
0x00000051,0x00000050,0x000500ae,0x00000052,0x00000053,0x0000004e,0x00000051,0x000300f7,
0x00000055,0x00000000,0x000400fa,0x00000053,0x00000054,0x00000055,0x000200f8,0x00000054,
0x000200fe,0x00000056,0x000200f8,0x00000055,0x0004003d,0x00000006,0x0000005a,0x00000043,
0x0003003e,0x00000059,0x0000005a,0x0004003d,0x00000006,0x0000005c,0x00000049,0x0003003e,
0x0000005b,0x0000005c,0x00060039,0x00000006,0x0000005d,0x0000000b,0x00000059,0x0000005b,
0x0003003e,0x00000058,0x0000005d,0x0004003d,0x00000006,0x00000064,0x00000058,0x00050086,
0x00000006,0x00000065,0x00000064,0x0000003c,0x00060041,0x00000066,0x00000067,0x00000062,
0x00000063,0x00000065,0x0004003d,0x00000006,0x00000068,0x00000067,0x0003003e,0x0000005e,
0x00000068,0x0004003d,0x00000006,0x0000006b,0x00000058,0x0003003e,0x0000006a,0x0000006b,
0x00050041,0x0000002a,0x0000006d,0x00000027,0x0000002f,0x0004003d,0x00000006,0x0000006e,
0x0000006d,0x0003003e,0x0000006c,0x0000006e,0x00060039,0x00000006,0x0000006f,0x0000000f,
0x0000006a,0x0000006c,0x0003003e,0x00000069,0x0000006f,0x00050041,0x0000002a,0x00000071,
0x00000027,0x0000002f,0x0004003d,0x00000006,0x00000072,0x00000071,0x00050084,0x00000006,
0x00000073,0x00000072,0x0000003e,0x0003003e,0x00000070,0x00000073,0x0004003d,0x00000006,
0x00000075,0x00000070,0x000500aa,0x00000052,0x00000077,0x00000075,0x00000076,0x000300f7,
0x0000007b,0x00000000,0x000400fa,0x00000077,0x0000007a,0x0000007d,0x000200f8,0x0000007a,
0x0003003e,0x00000079,0x0000007c,0x000200f9,0x0000007b,0x000200f8,0x0000007d,0x0004003d,
0x00000006,0x0000007f,0x00000070,0x000500c4,0x00000028,0x00000080,0x0000007e,0x0000007f,
0x00050082,0x00000028,0x00000081,0x00000080,0x0000007e,0x0003003e,0x00000079,0x00000081,
0x000200f9,0x0000007b,0x000200f8,0x0000007b,0x0004003d,0x00000028,0x00000082,0x00000079,
0x0004007c,0x00000006,0x00000083,0x00000082,0x0003003e,0x00000074,0x00000083,0x0004003d,
0x00000006,0x00000085,0x0000005e,0x0004003d,0x00000006,0x00000086,0x00000069,0x000500c2,
0x00000006,0x00000087,0x00000085,0x00000086,0x0004003d,0x00000006,0x00000088,0x00000074,
0x000500c7,0x00000006,0x00000089,0x00000087,0x00000088,0x0003003e,0x00000084,0x00000089,
0x0004003d,0x00000006,0x0000008a,0x00000070,0x000500b0,0x00000052,0x0000008b,0x0000008a,
0x00000076,0x000300f7,0x0000008d,0x00000000,0x000400fa,0x0000008b,0x0000008c,0x0000008d,
0x000200f8,0x0000008c,0x0004003d,0x00000006,0x00000090,0x00000084,0x0004003d,0x00000006,
0x00000091,0x00000070,0x00050082,0x00000006,0x00000093,0x00000091,0x00000092,0x000500c4,
0x00000028,0x00000094,0x0000007e,0x00000093,0x0004007c,0x00000006,0x00000095,0x00000094,
0x000500c7,0x00000006,0x00000096,0x00000090,0x00000095,0x000500ab,0x00000052,0x00000098,
0x00000096,0x00000097,0x0003003e,0x0000008f,0x00000098,0x0004003d,0x00000052,0x0000009a,
0x0000008f,0x000300f7,0x0000009d,0x00000000,0x000400fa,0x0000009a,0x0000009c,0x000000a0,
0x000200f8,0x0000009c,0x0004003d,0x00000006,0x0000009e,0x00000070,0x000500c4,0x00000028,
0x0000009f,0x0000007c,0x0000009e,0x0003003e,0x0000009b,0x0000009f,0x000200f9,0x0000009d,
0x000200f8,0x000000a0,0x0003003e,0x0000009b,0x00000063,0x000200f9,0x0000009d,0x000200f8,
0x0000009d,0x0004003d,0x00000028,0x000000a1,0x0000009b,0x0004007c,0x00000006,0x000000a2,
0x000000a1,0x0003003e,0x00000099,0x000000a2,0x0004003d,0x00000006,0x000000a3,0x00000099,
0x0004003d,0x00000006,0x000000a4,0x00000084,0x000500c5,0x00000006,0x000000a5,0x000000a4,
0x000000a3,0x0003003e,0x00000084,0x000000a5,0x000200f9,0x0000008d,0x000200f8,0x0000008d,
0x0004003d,0x00000006,0x000000a7,0x00000084,0x0004007c,0x00000028,0x000000a8,0x000000a7,
0x0003003e,0x000000a6,0x000000a8,0x0004003d,0x00000028,0x000000aa,0x000000a6,0x0004006f,
0x00000011,0x000000ab,0x000000aa,0x0004003d,0x00000006,0x000000ac,0x00000074,0x000500c2,
0x00000006,0x000000ad,0x000000ac,0x0000007e,0x00040070,0x00000011,0x000000ae,0x000000ad,
0x00050088,0x00000011,0x000000af,0x000000ab,0x000000ae,0x0003003e,0x000000a9,0x000000af,
0x0004003d,0x00000011,0x000000b0,0x000000a9,0x0007000c,0x00000011,0x000000b2,0x00000001,
0x00000028,0x000000b0,0x000000b1,0x0003003e,0x000000a9,0x000000b2,0x0004003d,0x00000011,
0x000000b3,0x000000a9,0x000200fe,0x000000b3,0x00010038,0x00050036,0x00000011,0x00000019,
0x00000000,0x00000017,0x00030037,0x00000016,0x00000018,0x000200f8,0x0000001a,0x0004003d,
0x00000011,0x000000b6,0x00000018,0x000200fe,0x000000b6,0x00010038,0x00050036,0x00000006,
0x0000001e,0x00000000,0x0000001b,0x00030037,0x00000007,0x0000001c,0x00030037,0x00000016,
0x0000001d,0x000200f8,0x0000001f,0x0004003b,0x00000007,0x000000b9,0x00000007,0x0004003d,
0x00000011,0x000000ba,0x0000001d,0x0004007c,0x00000028,0x000000bb,0x000000ba,0x0004007c,
0x00000006,0x000000bc,0x000000bb,0x0003003e,0x000000b9,0x000000bc,0x0004003d,0x00000006,
0x000000bd,0x000000b9,0x000200fe,0x000000bd,0x00010038,0x00050036,0x00000002,0x00000022,
0x00000000,0x00000020,0x00030037,0x00000007,0x00000021,0x000200f8,0x00000023,0x00050041,
0x000000c7,0x000000c8,0x000000c6,0x00000097,0x0004003d,0x00000006,0x000000c9,0x000000c8,
0x00050041,0x0000002a,0x000000cb,0x00000027,0x000000ca,0x0004003d,0x00000006,0x000000cc,
0x000000cb,0x00050086,0x00000006,0x000000cd,0x000000cc,0x0000003c,0x00050080,0x00000006,
0x000000ce,0x000000c9,0x000000cd,0x0004003d,0x00000006,0x000000cf,0x00000021,0x00060041,
0x00000066,0x000000d0,0x000000c3,0x00000063,0x000000ce,0x0003003e,0x000000d0,0x000000cf,
0x000100fd,0x00010038
};
// Generated from:
......@@ -292,7 +293,8 @@ const uint32_t kConvertVertex_comp_00000008[] = {
// valueAsUint |= signExtension;
// }
// int valueAsInt = int(valueAsUint);
// float value =(2 * float(valueAsInt)+ 1)/ valueMask;
// float value = float(valueAsInt)/(valueMask >> 1);
// value = max(value, float(- 1));
//
// return value;
// }
......
......@@ -77,129 +77,129 @@ const uint32_t kConvertVertex_comp_00000009[] = {
0x00000006,0x0004002b,0x00000006,0x00000076,0x00000020,0x00040020,0x00000078,0x00000007,
0x00000028,0x0004002b,0x00000028,0x0000007c,0xffffffff,0x0004002b,0x00000028,0x0000007e,
0x00000001,0x00040020,0x0000008e,0x00000007,0x00000052,0x0004002b,0x00000006,0x00000092,
0x00000001,0x0004002b,0x00000006,0x00000097,0x00000000,0x0004002b,0x00000011,0x000000aa,
0x40000000,0x0004002b,0x00000011,0x000000ae,0x3f800000,0x0003001d,0x000000c0,0x00000006,
0x0003001e,0x000000c1,0x000000c0,0x00040020,0x000000c2,0x00000002,0x000000c1,0x0004003b,
0x000000c2,0x000000c3,0x00000002,0x00040017,0x000000c4,0x00000006,0x00000003,0x00040020,
0x000000c5,0x00000001,0x000000c4,0x0004003b,0x000000c5,0x000000c6,0x00000001,0x00040020,
0x000000c7,0x00000001,0x00000006,0x0004002b,0x00000028,0x000000ca,0x00000003,0x0004002b,
0x00000006,0x000000f4,0x00000040,0x0006002c,0x000000c4,0x000000f5,0x000000f4,0x00000092,
0x00000092,0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,
0x0004003b,0x00000007,0x000000d1,0x00000007,0x0004003b,0x00000007,0x000000d2,0x00000007,
0x0004003b,0x00000007,0x000000da,0x00000007,0x0004003b,0x00000016,0x000000e0,0x00000007,
0x0004003b,0x00000007,0x000000e1,0x00000007,0x0004003b,0x00000016,0x000000e4,0x00000007,
0x0004003b,0x00000016,0x000000e5,0x00000007,0x0004003b,0x00000007,0x000000e8,0x00000007,
0x0004003b,0x00000016,0x000000ea,0x00000007,0x0004003b,0x00000007,0x000000f1,0x00000007,
0x0003003e,0x000000d1,0x00000097,0x0003003e,0x000000d2,0x00000097,0x000200f9,0x000000d3,
0x000200f8,0x000000d3,0x000400f6,0x000000d5,0x000000d6,0x00000000,0x000200f9,0x000000d7,
0x000200f8,0x000000d7,0x0004003d,0x00000006,0x000000d8,0x000000d2,0x000500b0,0x00000052,
0x000000d9,0x000000d8,0x00000092,0x000400fa,0x000000d9,0x000000d4,0x000000d5,0x000200f8,
0x000000d4,0x00050041,0x000000c7,0x000000db,0x000000c6,0x00000097,0x0004003d,0x00000006,
0x000000dc,0x000000db,0x00050084,0x00000006,0x000000dd,0x000000dc,0x00000092,0x0004003d,
0x00000006,0x000000de,0x000000d2,0x00050080,0x00000006,0x000000df,0x000000dd,0x000000de,
0x0003003e,0x000000da,0x000000df,0x0004003d,0x00000006,0x000000e2,0x000000da,0x0003003e,
0x000000e1,0x000000e2,0x00050039,0x00000011,0x000000e3,0x00000014,0x000000e1,0x0003003e,
0x000000e0,0x000000e3,0x0004003d,0x00000011,0x000000e6,0x000000e0,0x0003003e,0x000000e5,
0x000000e6,0x00050039,0x00000011,0x000000e7,0x00000019,0x000000e5,0x0003003e,0x000000e4,
0x000000e7,0x0004003d,0x00000006,0x000000e9,0x000000da,0x0003003e,0x000000e8,0x000000e9,
0x0004003d,0x00000011,0x000000eb,0x000000e4,0x0003003e,0x000000ea,0x000000eb,0x00060039,
0x00000006,0x000000ec,0x0000001e,0x000000e8,0x000000ea,0x0004003d,0x00000006,0x000000ed,
0x000000d1,0x000500c5,0x00000006,0x000000ee,0x000000ed,0x000000ec,0x0003003e,0x000000d1,
0x000000ee,0x000200f9,0x000000d6,0x000200f8,0x000000d6,0x0004003d,0x00000006,0x000000ef,
0x000000d2,0x00050080,0x00000006,0x000000f0,0x000000ef,0x0000007e,0x0003003e,0x000000d2,
0x000000f0,0x000200f9,0x000000d3,0x000200f8,0x000000d5,0x0004003d,0x00000006,0x000000f2,
0x000000d1,0x0003003e,0x000000f1,0x000000f2,0x00050039,0x00000002,0x000000f3,0x00000022,
0x000000f1,0x000100fd,0x00010038,0x00050036,0x00000006,0x0000000b,0x00000000,0x00000008,
0x00030037,0x00000007,0x00000009,0x00030037,0x00000007,0x0000000a,0x000200f8,0x0000000c,
0x0004003d,0x00000006,0x00000024,0x00000009,0x00050041,0x0000002a,0x0000002b,0x00000027,
0x00000029,0x0004003d,0x00000006,0x0000002c,0x0000002b,0x00050084,0x00000006,0x0000002d,
0x00000024,0x0000002c,0x0004003d,0x00000006,0x0000002e,0x0000000a,0x00050041,0x0000002a,
0x00000030,0x00000027,0x0000002f,0x0004003d,0x00000006,0x00000031,0x00000030,0x00050084,
0x00000006,0x00000032,0x0000002e,0x00000031,0x00050080,0x00000006,0x00000033,0x0000002d,
0x00000032,0x00050041,0x0000002a,0x00000035,0x00000027,0x00000034,0x0004003d,0x00000006,
0x00000036,0x00000035,0x00050080,0x00000006,0x00000037,0x00000033,0x00000036,0x000200fe,
0x00000037,0x00010038,0x00050036,0x00000006,0x0000000f,0x00000000,0x00000008,0x00030037,
0x00000007,0x0000000d,0x00030037,0x00000007,0x0000000e,0x000200f8,0x00000010,0x0004003b,
0x00000007,0x0000003a,0x00000007,0x0004003d,0x00000006,0x0000003b,0x0000000d,0x00050089,
0x00000006,0x0000003d,0x0000003b,0x0000003c,0x00050084,0x00000006,0x0000003f,0x0000003d,
0x0000003e,0x0003003e,0x0000003a,0x0000003f,0x0004003d,0x00000006,0x00000040,0x0000003a,
0x000200fe,0x00000040,0x00010038,0x00050036,0x00000011,0x00000014,0x00000000,0x00000012,
0x00030037,0x00000007,0x00000013,0x000200f8,0x00000015,0x0004003b,0x00000007,0x00000043,
0x00000007,0x0004003b,0x00000007,0x00000049,0x00000007,0x0004003b,0x00000007,0x00000058,
0x00000007,0x0004003b,0x00000007,0x00000059,0x00000007,0x0004003b,0x00000007,0x0000005b,
0x00000007,0x0004003b,0x00000007,0x0000005e,0x00000007,0x0004003b,0x00000007,0x00000069,
0x00000007,0x0004003b,0x00000007,0x0000006a,0x00000007,0x0004003b,0x00000007,0x0000006c,
0x00000007,0x0004003b,0x00000007,0x00000070,0x00000007,0x0004003b,0x00000007,0x00000074,
0x00000007,0x0004003b,0x00000078,0x00000079,0x00000007,0x0004003b,0x00000007,0x00000084,
0x00000007,0x0004003b,0x0000008e,0x0000008f,0x00000007,0x0004003b,0x00000007,0x00000099,
0x00000007,0x0004003b,0x00000078,0x0000009b,0x00000007,0x0004003b,0x00000078,0x000000a6,
0x00000007,0x0004003b,0x00000016,0x000000a9,0x00000007,0x0004003d,0x00000006,0x00000044,
0x00000013,0x00050041,0x0000002a,0x00000046,0x00000027,0x00000045,0x0004003d,0x00000006,
0x00000047,0x00000046,0x00050086,0x00000006,0x00000048,0x00000044,0x00000047,0x0003003e,
0x00000043,0x00000048,0x0004003d,0x00000006,0x0000004a,0x00000013,0x00050041,0x0000002a,
0x0000004b,0x00000027,0x00000045,0x0004003d,0x00000006,0x0000004c,0x0000004b,0x00050089,
0x00000006,0x0000004d,0x0000004a,0x0000004c,0x0003003e,0x00000049,0x0000004d,0x0004003d,
0x00000006,0x0000004e,0x00000049,0x00050041,0x0000002a,0x00000050,0x00000027,0x0000004f,
0x0004003d,0x00000006,0x00000051,0x00000050,0x000500ae,0x00000052,0x00000053,0x0000004e,
0x00000051,0x000300f7,0x00000055,0x00000000,0x000400fa,0x00000053,0x00000054,0x00000055,
0x000200f8,0x00000054,0x000200fe,0x00000056,0x000200f8,0x00000055,0x0004003d,0x00000006,
0x0000005a,0x00000043,0x0003003e,0x00000059,0x0000005a,0x0004003d,0x00000006,0x0000005c,
0x00000049,0x0003003e,0x0000005b,0x0000005c,0x00060039,0x00000006,0x0000005d,0x0000000b,
0x00000059,0x0000005b,0x0003003e,0x00000058,0x0000005d,0x0004003d,0x00000006,0x00000064,
0x00000058,0x00050086,0x00000006,0x00000065,0x00000064,0x0000003c,0x00060041,0x00000066,
0x00000067,0x00000062,0x00000063,0x00000065,0x0004003d,0x00000006,0x00000068,0x00000067,
0x0003003e,0x0000005e,0x00000068,0x0004003d,0x00000006,0x0000006b,0x00000058,0x0003003e,
0x0000006a,0x0000006b,0x00050041,0x0000002a,0x0000006d,0x00000027,0x0000002f,0x0004003d,
0x00000006,0x0000006e,0x0000006d,0x0003003e,0x0000006c,0x0000006e,0x00060039,0x00000006,
0x0000006f,0x0000000f,0x0000006a,0x0000006c,0x0003003e,0x00000069,0x0000006f,0x00050041,
0x0000002a,0x00000071,0x00000027,0x0000002f,0x0004003d,0x00000006,0x00000072,0x00000071,
0x00050084,0x00000006,0x00000073,0x00000072,0x0000003e,0x0003003e,0x00000070,0x00000073,
0x0004003d,0x00000006,0x00000075,0x00000070,0x000500aa,0x00000052,0x00000077,0x00000075,
0x00000076,0x000300f7,0x0000007b,0x00000000,0x000400fa,0x00000077,0x0000007a,0x0000007d,
0x000200f8,0x0000007a,0x0003003e,0x00000079,0x0000007c,0x000200f9,0x0000007b,0x000200f8,
0x0000007d,0x0004003d,0x00000006,0x0000007f,0x00000070,0x000500c4,0x00000028,0x00000080,
0x0000007e,0x0000007f,0x00050082,0x00000028,0x00000081,0x00000080,0x0000007e,0x0003003e,
0x00000079,0x00000081,0x000200f9,0x0000007b,0x000200f8,0x0000007b,0x0004003d,0x00000028,
0x00000082,0x00000079,0x0004007c,0x00000006,0x00000083,0x00000082,0x0003003e,0x00000074,
0x00000083,0x0004003d,0x00000006,0x00000085,0x0000005e,0x0004003d,0x00000006,0x00000086,
0x00000069,0x000500c2,0x00000006,0x00000087,0x00000085,0x00000086,0x0004003d,0x00000006,
0x00000088,0x00000074,0x000500c7,0x00000006,0x00000089,0x00000087,0x00000088,0x0003003e,
0x00000084,0x00000089,0x0004003d,0x00000006,0x0000008a,0x00000070,0x000500b0,0x00000052,
0x0000008b,0x0000008a,0x00000076,0x000300f7,0x0000008d,0x00000000,0x000400fa,0x0000008b,
0x0000008c,0x0000008d,0x000200f8,0x0000008c,0x0004003d,0x00000006,0x00000090,0x00000084,
0x0004003d,0x00000006,0x00000091,0x00000070,0x00050082,0x00000006,0x00000093,0x00000091,
0x00000092,0x000500c4,0x00000028,0x00000094,0x0000007e,0x00000093,0x0004007c,0x00000006,
0x00000095,0x00000094,0x000500c7,0x00000006,0x00000096,0x00000090,0x00000095,0x000500ab,
0x00000052,0x00000098,0x00000096,0x00000097,0x0003003e,0x0000008f,0x00000098,0x0004003d,
0x00000052,0x0000009a,0x0000008f,0x000300f7,0x0000009d,0x00000000,0x000400fa,0x0000009a,
0x0000009c,0x000000a0,0x000200f8,0x0000009c,0x0004003d,0x00000006,0x0000009e,0x00000070,
0x000500c4,0x00000028,0x0000009f,0x0000007c,0x0000009e,0x0003003e,0x0000009b,0x0000009f,
0x000200f9,0x0000009d,0x000200f8,0x000000a0,0x0003003e,0x0000009b,0x00000063,0x000200f9,
0x0000009d,0x000200f8,0x0000009d,0x0004003d,0x00000028,0x000000a1,0x0000009b,0x0004007c,
0x00000006,0x000000a2,0x000000a1,0x0003003e,0x00000099,0x000000a2,0x0004003d,0x00000006,
0x000000a3,0x00000099,0x0004003d,0x00000006,0x000000a4,0x00000084,0x000500c5,0x00000006,
0x000000a5,0x000000a4,0x000000a3,0x0003003e,0x00000084,0x000000a5,0x000200f9,0x0000008d,
0x000200f8,0x0000008d,0x0004003d,0x00000006,0x000000a7,0x00000084,0x0004007c,0x00000028,
0x000000a8,0x000000a7,0x0003003e,0x000000a6,0x000000a8,0x0004003d,0x00000028,0x000000ab,
0x000000a6,0x0004006f,0x00000011,0x000000ac,0x000000ab,0x00050085,0x00000011,0x000000ad,
0x000000aa,0x000000ac,0x00050081,0x00000011,0x000000af,0x000000ad,0x000000ae,0x0004003d,
0x00000006,0x000000b0,0x00000074,0x00040070,0x00000011,0x000000b1,0x000000b0,0x00050088,
0x00000011,0x000000b2,0x000000af,0x000000b1,0x0003003e,0x000000a9,0x000000b2,0x0004003d,
0x00000011,0x000000b3,0x000000a9,0x000200fe,0x000000b3,0x00010038,0x00050036,0x00000011,
0x00000019,0x00000000,0x00000017,0x00030037,0x00000016,0x00000018,0x000200f8,0x0000001a,
0x0004003d,0x00000011,0x000000b6,0x00000018,0x000200fe,0x000000b6,0x00010038,0x00050036,
0x00000006,0x0000001e,0x00000000,0x0000001b,0x00030037,0x00000007,0x0000001c,0x00030037,
0x00000016,0x0000001d,0x000200f8,0x0000001f,0x0004003b,0x00000007,0x000000b9,0x00000007,
0x0004003d,0x00000011,0x000000ba,0x0000001d,0x0004007c,0x00000028,0x000000bb,0x000000ba,
0x0004007c,0x00000006,0x000000bc,0x000000bb,0x0003003e,0x000000b9,0x000000bc,0x0004003d,
0x00000006,0x000000bd,0x000000b9,0x000200fe,0x000000bd,0x00010038,0x00050036,0x00000002,
0x00000022,0x00000000,0x00000020,0x00030037,0x00000007,0x00000021,0x000200f8,0x00000023,
0x00050041,0x000000c7,0x000000c8,0x000000c6,0x00000097,0x0004003d,0x00000006,0x000000c9,
0x000000c8,0x00050041,0x0000002a,0x000000cb,0x00000027,0x000000ca,0x0004003d,0x00000006,
0x000000cc,0x000000cb,0x00050086,0x00000006,0x000000cd,0x000000cc,0x0000003c,0x00050080,
0x00000006,0x000000ce,0x000000c9,0x000000cd,0x0004003d,0x00000006,0x000000cf,0x00000021,
0x00060041,0x00000066,0x000000d0,0x000000c3,0x00000063,0x000000ce,0x0003003e,0x000000d0,
0x000000cf,0x000100fd,0x00010038
0x00000001,0x0004002b,0x00000006,0x00000097,0x00000000,0x0004002b,0x00000011,0x000000b1,
0xbf800000,0x0003001d,0x000000c0,0x00000006,0x0003001e,0x000000c1,0x000000c0,0x00040020,
0x000000c2,0x00000002,0x000000c1,0x0004003b,0x000000c2,0x000000c3,0x00000002,0x00040017,
0x000000c4,0x00000006,0x00000003,0x00040020,0x000000c5,0x00000001,0x000000c4,0x0004003b,
0x000000c5,0x000000c6,0x00000001,0x00040020,0x000000c7,0x00000001,0x00000006,0x0004002b,
0x00000028,0x000000ca,0x00000003,0x0004002b,0x00000006,0x000000f4,0x00000040,0x0006002c,
0x000000c4,0x000000f5,0x000000f4,0x00000092,0x00000092,0x00050036,0x00000002,0x00000004,
0x00000000,0x00000003,0x000200f8,0x00000005,0x0004003b,0x00000007,0x000000d1,0x00000007,
0x0004003b,0x00000007,0x000000d2,0x00000007,0x0004003b,0x00000007,0x000000da,0x00000007,
0x0004003b,0x00000016,0x000000e0,0x00000007,0x0004003b,0x00000007,0x000000e1,0x00000007,
0x0004003b,0x00000016,0x000000e4,0x00000007,0x0004003b,0x00000016,0x000000e5,0x00000007,
0x0004003b,0x00000007,0x000000e8,0x00000007,0x0004003b,0x00000016,0x000000ea,0x00000007,
0x0004003b,0x00000007,0x000000f1,0x00000007,0x0003003e,0x000000d1,0x00000097,0x0003003e,
0x000000d2,0x00000097,0x000200f9,0x000000d3,0x000200f8,0x000000d3,0x000400f6,0x000000d5,
0x000000d6,0x00000000,0x000200f9,0x000000d7,0x000200f8,0x000000d7,0x0004003d,0x00000006,
0x000000d8,0x000000d2,0x000500b0,0x00000052,0x000000d9,0x000000d8,0x00000092,0x000400fa,
0x000000d9,0x000000d4,0x000000d5,0x000200f8,0x000000d4,0x00050041,0x000000c7,0x000000db,
0x000000c6,0x00000097,0x0004003d,0x00000006,0x000000dc,0x000000db,0x00050084,0x00000006,
0x000000dd,0x000000dc,0x00000092,0x0004003d,0x00000006,0x000000de,0x000000d2,0x00050080,
0x00000006,0x000000df,0x000000dd,0x000000de,0x0003003e,0x000000da,0x000000df,0x0004003d,
0x00000006,0x000000e2,0x000000da,0x0003003e,0x000000e1,0x000000e2,0x00050039,0x00000011,
0x000000e3,0x00000014,0x000000e1,0x0003003e,0x000000e0,0x000000e3,0x0004003d,0x00000011,
0x000000e6,0x000000e0,0x0003003e,0x000000e5,0x000000e6,0x00050039,0x00000011,0x000000e7,
0x00000019,0x000000e5,0x0003003e,0x000000e4,0x000000e7,0x0004003d,0x00000006,0x000000e9,
0x000000da,0x0003003e,0x000000e8,0x000000e9,0x0004003d,0x00000011,0x000000eb,0x000000e4,
0x0003003e,0x000000ea,0x000000eb,0x00060039,0x00000006,0x000000ec,0x0000001e,0x000000e8,
0x000000ea,0x0004003d,0x00000006,0x000000ed,0x000000d1,0x000500c5,0x00000006,0x000000ee,
0x000000ed,0x000000ec,0x0003003e,0x000000d1,0x000000ee,0x000200f9,0x000000d6,0x000200f8,
0x000000d6,0x0004003d,0x00000006,0x000000ef,0x000000d2,0x00050080,0x00000006,0x000000f0,
0x000000ef,0x0000007e,0x0003003e,0x000000d2,0x000000f0,0x000200f9,0x000000d3,0x000200f8,
0x000000d5,0x0004003d,0x00000006,0x000000f2,0x000000d1,0x0003003e,0x000000f1,0x000000f2,
0x00050039,0x00000002,0x000000f3,0x00000022,0x000000f1,0x000100fd,0x00010038,0x00050036,
0x00000006,0x0000000b,0x00000000,0x00000008,0x00030037,0x00000007,0x00000009,0x00030037,
0x00000007,0x0000000a,0x000200f8,0x0000000c,0x0004003d,0x00000006,0x00000024,0x00000009,
0x00050041,0x0000002a,0x0000002b,0x00000027,0x00000029,0x0004003d,0x00000006,0x0000002c,
0x0000002b,0x00050084,0x00000006,0x0000002d,0x00000024,0x0000002c,0x0004003d,0x00000006,
0x0000002e,0x0000000a,0x00050041,0x0000002a,0x00000030,0x00000027,0x0000002f,0x0004003d,
0x00000006,0x00000031,0x00000030,0x00050084,0x00000006,0x00000032,0x0000002e,0x00000031,
0x00050080,0x00000006,0x00000033,0x0000002d,0x00000032,0x00050041,0x0000002a,0x00000035,
0x00000027,0x00000034,0x0004003d,0x00000006,0x00000036,0x00000035,0x00050080,0x00000006,
0x00000037,0x00000033,0x00000036,0x000200fe,0x00000037,0x00010038,0x00050036,0x00000006,
0x0000000f,0x00000000,0x00000008,0x00030037,0x00000007,0x0000000d,0x00030037,0x00000007,
0x0000000e,0x000200f8,0x00000010,0x0004003b,0x00000007,0x0000003a,0x00000007,0x0004003d,
0x00000006,0x0000003b,0x0000000d,0x00050089,0x00000006,0x0000003d,0x0000003b,0x0000003c,
0x00050084,0x00000006,0x0000003f,0x0000003d,0x0000003e,0x0003003e,0x0000003a,0x0000003f,
0x0004003d,0x00000006,0x00000040,0x0000003a,0x000200fe,0x00000040,0x00010038,0x00050036,
0x00000011,0x00000014,0x00000000,0x00000012,0x00030037,0x00000007,0x00000013,0x000200f8,
0x00000015,0x0004003b,0x00000007,0x00000043,0x00000007,0x0004003b,0x00000007,0x00000049,
0x00000007,0x0004003b,0x00000007,0x00000058,0x00000007,0x0004003b,0x00000007,0x00000059,
0x00000007,0x0004003b,0x00000007,0x0000005b,0x00000007,0x0004003b,0x00000007,0x0000005e,
0x00000007,0x0004003b,0x00000007,0x00000069,0x00000007,0x0004003b,0x00000007,0x0000006a,
0x00000007,0x0004003b,0x00000007,0x0000006c,0x00000007,0x0004003b,0x00000007,0x00000070,
0x00000007,0x0004003b,0x00000007,0x00000074,0x00000007,0x0004003b,0x00000078,0x00000079,
0x00000007,0x0004003b,0x00000007,0x00000084,0x00000007,0x0004003b,0x0000008e,0x0000008f,
0x00000007,0x0004003b,0x00000007,0x00000099,0x00000007,0x0004003b,0x00000078,0x0000009b,
0x00000007,0x0004003b,0x00000078,0x000000a6,0x00000007,0x0004003b,0x00000016,0x000000a9,
0x00000007,0x0004003d,0x00000006,0x00000044,0x00000013,0x00050041,0x0000002a,0x00000046,
0x00000027,0x00000045,0x0004003d,0x00000006,0x00000047,0x00000046,0x00050086,0x00000006,
0x00000048,0x00000044,0x00000047,0x0003003e,0x00000043,0x00000048,0x0004003d,0x00000006,
0x0000004a,0x00000013,0x00050041,0x0000002a,0x0000004b,0x00000027,0x00000045,0x0004003d,
0x00000006,0x0000004c,0x0000004b,0x00050089,0x00000006,0x0000004d,0x0000004a,0x0000004c,
0x0003003e,0x00000049,0x0000004d,0x0004003d,0x00000006,0x0000004e,0x00000049,0x00050041,
0x0000002a,0x00000050,0x00000027,0x0000004f,0x0004003d,0x00000006,0x00000051,0x00000050,
0x000500ae,0x00000052,0x00000053,0x0000004e,0x00000051,0x000300f7,0x00000055,0x00000000,
0x000400fa,0x00000053,0x00000054,0x00000055,0x000200f8,0x00000054,0x000200fe,0x00000056,
0x000200f8,0x00000055,0x0004003d,0x00000006,0x0000005a,0x00000043,0x0003003e,0x00000059,
0x0000005a,0x0004003d,0x00000006,0x0000005c,0x00000049,0x0003003e,0x0000005b,0x0000005c,
0x00060039,0x00000006,0x0000005d,0x0000000b,0x00000059,0x0000005b,0x0003003e,0x00000058,
0x0000005d,0x0004003d,0x00000006,0x00000064,0x00000058,0x00050086,0x00000006,0x00000065,
0x00000064,0x0000003c,0x00060041,0x00000066,0x00000067,0x00000062,0x00000063,0x00000065,
0x0004003d,0x00000006,0x00000068,0x00000067,0x0003003e,0x0000005e,0x00000068,0x0004003d,
0x00000006,0x0000006b,0x00000058,0x0003003e,0x0000006a,0x0000006b,0x00050041,0x0000002a,
0x0000006d,0x00000027,0x0000002f,0x0004003d,0x00000006,0x0000006e,0x0000006d,0x0003003e,
0x0000006c,0x0000006e,0x00060039,0x00000006,0x0000006f,0x0000000f,0x0000006a,0x0000006c,
0x0003003e,0x00000069,0x0000006f,0x00050041,0x0000002a,0x00000071,0x00000027,0x0000002f,
0x0004003d,0x00000006,0x00000072,0x00000071,0x00050084,0x00000006,0x00000073,0x00000072,
0x0000003e,0x0003003e,0x00000070,0x00000073,0x0004003d,0x00000006,0x00000075,0x00000070,
0x000500aa,0x00000052,0x00000077,0x00000075,0x00000076,0x000300f7,0x0000007b,0x00000000,
0x000400fa,0x00000077,0x0000007a,0x0000007d,0x000200f8,0x0000007a,0x0003003e,0x00000079,
0x0000007c,0x000200f9,0x0000007b,0x000200f8,0x0000007d,0x0004003d,0x00000006,0x0000007f,
0x00000070,0x000500c4,0x00000028,0x00000080,0x0000007e,0x0000007f,0x00050082,0x00000028,
0x00000081,0x00000080,0x0000007e,0x0003003e,0x00000079,0x00000081,0x000200f9,0x0000007b,
0x000200f8,0x0000007b,0x0004003d,0x00000028,0x00000082,0x00000079,0x0004007c,0x00000006,
0x00000083,0x00000082,0x0003003e,0x00000074,0x00000083,0x0004003d,0x00000006,0x00000085,
0x0000005e,0x0004003d,0x00000006,0x00000086,0x00000069,0x000500c2,0x00000006,0x00000087,
0x00000085,0x00000086,0x0004003d,0x00000006,0x00000088,0x00000074,0x000500c7,0x00000006,
0x00000089,0x00000087,0x00000088,0x0003003e,0x00000084,0x00000089,0x0004003d,0x00000006,
0x0000008a,0x00000070,0x000500b0,0x00000052,0x0000008b,0x0000008a,0x00000076,0x000300f7,
0x0000008d,0x00000000,0x000400fa,0x0000008b,0x0000008c,0x0000008d,0x000200f8,0x0000008c,
0x0004003d,0x00000006,0x00000090,0x00000084,0x0004003d,0x00000006,0x00000091,0x00000070,
0x00050082,0x00000006,0x00000093,0x00000091,0x00000092,0x000500c4,0x00000028,0x00000094,
0x0000007e,0x00000093,0x0004007c,0x00000006,0x00000095,0x00000094,0x000500c7,0x00000006,
0x00000096,0x00000090,0x00000095,0x000500ab,0x00000052,0x00000098,0x00000096,0x00000097,
0x0003003e,0x0000008f,0x00000098,0x0004003d,0x00000052,0x0000009a,0x0000008f,0x000300f7,
0x0000009d,0x00000000,0x000400fa,0x0000009a,0x0000009c,0x000000a0,0x000200f8,0x0000009c,
0x0004003d,0x00000006,0x0000009e,0x00000070,0x000500c4,0x00000028,0x0000009f,0x0000007c,
0x0000009e,0x0003003e,0x0000009b,0x0000009f,0x000200f9,0x0000009d,0x000200f8,0x000000a0,
0x0003003e,0x0000009b,0x00000063,0x000200f9,0x0000009d,0x000200f8,0x0000009d,0x0004003d,
0x00000028,0x000000a1,0x0000009b,0x0004007c,0x00000006,0x000000a2,0x000000a1,0x0003003e,
0x00000099,0x000000a2,0x0004003d,0x00000006,0x000000a3,0x00000099,0x0004003d,0x00000006,
0x000000a4,0x00000084,0x000500c5,0x00000006,0x000000a5,0x000000a4,0x000000a3,0x0003003e,
0x00000084,0x000000a5,0x000200f9,0x0000008d,0x000200f8,0x0000008d,0x0004003d,0x00000006,
0x000000a7,0x00000084,0x0004007c,0x00000028,0x000000a8,0x000000a7,0x0003003e,0x000000a6,
0x000000a8,0x0004003d,0x00000028,0x000000aa,0x000000a6,0x0004006f,0x00000011,0x000000ab,
0x000000aa,0x0004003d,0x00000006,0x000000ac,0x00000074,0x000500c2,0x00000006,0x000000ad,
0x000000ac,0x0000007e,0x00040070,0x00000011,0x000000ae,0x000000ad,0x00050088,0x00000011,
0x000000af,0x000000ab,0x000000ae,0x0003003e,0x000000a9,0x000000af,0x0004003d,0x00000011,
0x000000b0,0x000000a9,0x0007000c,0x00000011,0x000000b2,0x00000001,0x00000028,0x000000b0,
0x000000b1,0x0003003e,0x000000a9,0x000000b2,0x0004003d,0x00000011,0x000000b3,0x000000a9,
0x000200fe,0x000000b3,0x00010038,0x00050036,0x00000011,0x00000019,0x00000000,0x00000017,
0x00030037,0x00000016,0x00000018,0x000200f8,0x0000001a,0x0004003d,0x00000011,0x000000b6,
0x00000018,0x000200fe,0x000000b6,0x00010038,0x00050036,0x00000006,0x0000001e,0x00000000,
0x0000001b,0x00030037,0x00000007,0x0000001c,0x00030037,0x00000016,0x0000001d,0x000200f8,
0x0000001f,0x0004003b,0x00000007,0x000000b9,0x00000007,0x0004003d,0x00000011,0x000000ba,
0x0000001d,0x0004007c,0x00000028,0x000000bb,0x000000ba,0x0004007c,0x00000006,0x000000bc,
0x000000bb,0x0003003e,0x000000b9,0x000000bc,0x0004003d,0x00000006,0x000000bd,0x000000b9,
0x000200fe,0x000000bd,0x00010038,0x00050036,0x00000002,0x00000022,0x00000000,0x00000020,
0x00030037,0x00000007,0x00000021,0x000200f8,0x00000023,0x00050041,0x000000c7,0x000000c8,
0x000000c6,0x00000097,0x0004003d,0x00000006,0x000000c9,0x000000c8,0x00050041,0x0000002a,
0x000000cb,0x00000027,0x000000ca,0x0004003d,0x00000006,0x000000cc,0x000000cb,0x00050086,
0x00000006,0x000000cd,0x000000cc,0x0000003c,0x00050080,0x00000006,0x000000ce,0x000000c9,
0x000000cd,0x0004003d,0x00000006,0x000000cf,0x00000021,0x00060041,0x00000066,0x000000d0,
0x000000c3,0x00000063,0x000000ce,0x0003003e,0x000000d0,0x000000cf,0x000100fd,0x00010038
};
// Generated from:
......@@ -284,7 +284,8 @@ const uint32_t kConvertVertex_comp_00000009[] = {
// valueAsUint |= signExtension;
// }
// int valueAsInt = int(valueAsUint);
// float value =(2 * float(valueAsInt)+ 1)/ valueMask;
// float value = float(valueAsInt)/(valueMask >> 1);
// value = max(value, float(- 1));
//
// return value;
// }
......
......@@ -76,124 +76,125 @@ const uint32_t kConvertVertex_comp_00000018[] = {
0x00000006,0x00000076,0x00000020,0x00040020,0x0000007a,0x00000007,0x00000045,0x0004002b,
0x00000024,0x0000007d,0x00000001,0x0004002b,0x00000006,0x0000007f,0x00000001,0x0004002b,
0x00000006,0x00000084,0x00000000,0x00040020,0x00000088,0x00000007,0x00000024,0x0004002b,
0x00000024,0x0000008c,0xffffffff,0x0004002b,0x0000000d,0x00000099,0x40000000,0x0004002b,
0x0000000d,0x0000009d,0x3f800000,0x0003001d,0x000000af,0x00000006,0x0003001e,0x000000b0,
0x000000af,0x00040020,0x000000b1,0x00000002,0x000000b0,0x0004003b,0x000000b1,0x000000b2,
0x00000002,0x00040017,0x000000b3,0x00000006,0x00000003,0x00040020,0x000000b4,0x00000001,
0x000000b3,0x0004003b,0x000000b4,0x000000b5,0x00000001,0x00040020,0x000000b6,0x00000001,
0x00000006,0x0004002b,0x00000006,0x000000f1,0x00000040,0x0006002c,0x000000b3,0x000000f2,
0x000000f1,0x0000007f,0x0000007f,0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,
0x000200f8,0x00000005,0x0004003b,0x00000007,0x000000c7,0x00000007,0x0004003b,0x00000007,
0x000000c8,0x00000007,0x0004003b,0x00000007,0x000000d0,0x00000007,0x0004003b,0x00000012,
0x000000dd,0x00000007,0x0004003b,0x00000007,0x000000de,0x00000007,0x0004003b,0x00000012,
0x000000e1,0x00000007,0x0004003b,0x00000012,0x000000e2,0x00000007,0x0004003b,0x00000007,
0x000000e5,0x00000007,0x0004003b,0x00000012,0x000000e7,0x00000007,0x0004003b,0x00000007,
0x000000ee,0x00000007,0x00050041,0x000000b6,0x000000bf,0x000000b5,0x00000084,0x0004003d,
0x00000006,0x000000c0,0x000000bf,0x00050041,0x00000026,0x000000c1,0x00000023,0x00000056,
0x0004003d,0x00000006,0x000000c2,0x000000c1,0x000500ae,0x00000045,0x000000c3,0x000000c0,
0x000000c2,0x000300f7,0x000000c5,0x00000000,0x000400fa,0x000000c3,0x000000c4,0x000000c5,
0x000200f8,0x000000c4,0x000100fd,0x000200f8,0x000000c5,0x0003003e,0x000000c7,0x00000084,
0x0003003e,0x000000c8,0x00000084,0x000200f9,0x000000c9,0x000200f8,0x000000c9,0x000400f6,
0x000000cb,0x000000cc,0x00000000,0x000200f9,0x000000cd,0x000200f8,0x000000cd,0x0004003d,
0x00000006,0x000000ce,0x000000c8,0x000500b0,0x00000045,0x000000cf,0x000000ce,0x0000007f,
0x000400fa,0x000000cf,0x000000ca,0x000000cb,0x000200f8,0x000000ca,0x00050041,0x000000b6,
0x000000d1,0x000000b5,0x00000084,0x0004003d,0x00000006,0x000000d2,0x000000d1,0x00050084,
0x00000006,0x000000d3,0x000000d2,0x0000007f,0x0004003d,0x00000006,0x000000d4,0x000000c8,
0x00050080,0x00000006,0x000000d5,0x000000d3,0x000000d4,0x0003003e,0x000000d0,0x000000d5,
0x0004003d,0x00000006,0x000000d6,0x000000d0,0x00050041,0x00000026,0x000000d7,0x00000023,
0x0000007d,0x0004003d,0x00000006,0x000000d8,0x000000d7,0x000500ae,0x00000045,0x000000d9,
0x000000d6,0x000000d8,0x000300f7,0x000000db,0x00000000,0x000400fa,0x000000d9,0x000000da,
0x000000db,0x000200f8,0x000000da,0x000200f9,0x000000cb,0x000200f8,0x000000db,0x0004003d,
0x00000006,0x000000df,0x000000d0,0x0003003e,0x000000de,0x000000df,0x00050039,0x0000000d,
0x000000e0,0x00000010,0x000000de,0x0003003e,0x000000dd,0x000000e0,0x0004003d,0x0000000d,
0x000000e3,0x000000dd,0x0003003e,0x000000e2,0x000000e3,0x00050039,0x0000000d,0x000000e4,
0x00000015,0x000000e2,0x0003003e,0x000000e1,0x000000e4,0x0004003d,0x00000006,0x000000e6,
0x000000d0,0x0003003e,0x000000e5,0x000000e6,0x0004003d,0x0000000d,0x000000e8,0x000000e1,
0x0003003e,0x000000e7,0x000000e8,0x00060039,0x00000006,0x000000e9,0x0000001a,0x000000e5,
0x000000e7,0x0004003d,0x00000006,0x000000ea,0x000000c7,0x000500c5,0x00000006,0x000000eb,
0x000000ea,0x000000e9,0x0003003e,0x000000c7,0x000000eb,0x000200f9,0x000000cc,0x000200f8,
0x000000cc,0x0004003d,0x00000006,0x000000ec,0x000000c8,0x00050080,0x00000006,0x000000ed,
0x000000ec,0x0000007d,0x0003003e,0x000000c8,0x000000ed,0x000200f9,0x000000c9,0x000200f8,
0x000000cb,0x0004003d,0x00000006,0x000000ef,0x000000c7,0x0003003e,0x000000ee,0x000000ef,
0x00050039,0x00000002,0x000000f0,0x0000001e,0x000000ee,0x000100fd,0x00010038,0x00050036,
0x00000006,0x0000000b,0x00000000,0x00000008,0x00030037,0x00000007,0x00000009,0x00030037,
0x00000007,0x0000000a,0x000200f8,0x0000000c,0x0004003d,0x00000006,0x00000020,0x00000009,
0x00050041,0x00000026,0x00000027,0x00000023,0x00000025,0x0004003d,0x00000006,0x00000028,
0x00000027,0x00050084,0x00000006,0x00000029,0x00000020,0x00000028,0x0004003d,0x00000006,
0x0000002a,0x0000000a,0x00050041,0x00000026,0x0000002c,0x00000023,0x0000002b,0x0004003d,
0x00000006,0x0000002d,0x0000002c,0x00050084,0x00000006,0x0000002e,0x0000002a,0x0000002d,
0x00050080,0x00000006,0x0000002f,0x00000029,0x0000002e,0x00050041,0x00000026,0x00000031,
0x00000023,0x00000030,0x0004003d,0x00000006,0x00000032,0x00000031,0x00050080,0x00000006,
0x00000033,0x0000002f,0x00000032,0x000200fe,0x00000033,0x00010038,0x00050036,0x0000000d,
0x00000010,0x00000000,0x0000000e,0x00030037,0x00000007,0x0000000f,0x000200f8,0x00000011,
0x0004003b,0x00000007,0x00000036,0x00000007,0x0004003b,0x00000007,0x0000003c,0x00000007,
0x0004003b,0x00000007,0x0000004b,0x00000007,0x0004003b,0x00000007,0x0000004c,0x00000007,
0x0004003b,0x00000007,0x0000004e,0x00000007,0x0004003b,0x00000007,0x00000051,0x00000007,
0x0004003b,0x00000007,0x0000005d,0x00000007,0x0004003b,0x00000007,0x00000064,0x00000007,
0x0004003b,0x00000007,0x00000068,0x00000007,0x0004003b,0x00000007,0x0000006f,0x00000007,
0x0004003b,0x0000007a,0x0000007b,0x00000007,0x0004003b,0x00000007,0x00000086,0x00000007,
0x0004003b,0x00000088,0x00000089,0x00000007,0x0004003b,0x00000088,0x00000095,0x00000007,
0x0004003b,0x00000012,0x00000098,0x00000007,0x0004003d,0x00000006,0x00000037,0x0000000f,
0x00050041,0x00000026,0x00000039,0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003a,
0x00000039,0x00050086,0x00000006,0x0000003b,0x00000037,0x0000003a,0x0003003e,0x00000036,
0x0000003b,0x0004003d,0x00000006,0x0000003d,0x0000000f,0x00050041,0x00000026,0x0000003e,
0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003f,0x0000003e,0x00050089,0x00000006,
0x00000040,0x0000003d,0x0000003f,0x0003003e,0x0000003c,0x00000040,0x0004003d,0x00000006,
0x00000041,0x0000003c,0x00050041,0x00000026,0x00000043,0x00000023,0x00000042,0x0004003d,
0x00000006,0x00000044,0x00000043,0x000500ae,0x00000045,0x00000046,0x00000041,0x00000044,
0x000300f7,0x00000048,0x00000000,0x000400fa,0x00000046,0x00000047,0x00000048,0x000200f8,
0x00000047,0x000200fe,0x00000049,0x000200f8,0x00000048,0x0004003d,0x00000006,0x0000004d,
0x00000036,0x0003003e,0x0000004c,0x0000004d,0x0004003d,0x00000006,0x0000004f,0x0000003c,
0x0003003e,0x0000004e,0x0000004f,0x00060039,0x00000006,0x00000050,0x0000000b,0x0000004c,
0x0000004e,0x0003003e,0x0000004b,0x00000050,0x0004003d,0x00000006,0x00000057,0x0000004b,
0x00050086,0x00000006,0x00000059,0x00000057,0x00000058,0x00060041,0x0000005a,0x0000005b,
0x00000055,0x00000056,0x00000059,0x0004003d,0x00000006,0x0000005c,0x0000005b,0x0003003e,
0x00000051,0x0000005c,0x0004003d,0x00000006,0x0000005e,0x0000003c,0x000500aa,0x00000045,
0x00000060,0x0000005e,0x0000005f,0x000600a9,0x00000024,0x00000062,0x00000060,0x00000030,
0x00000061,0x0004007c,0x00000006,0x00000063,0x00000062,0x0003003e,0x0000005d,0x00000063,
0x0004003d,0x00000006,0x00000066,0x0000003c,0x00050084,0x00000006,0x00000067,0x00000065,
0x00000066,0x0003003e,0x00000064,0x00000067,0x0004003d,0x00000006,0x00000069,0x0000003c,
0x000500aa,0x00000045,0x0000006a,0x00000069,0x0000005f,0x000600a9,0x00000024,0x0000006d,
0x0000006a,0x0000006b,0x0000006c,0x0004007c,0x00000006,0x0000006e,0x0000006d,0x0003003e,
0x00000068,0x0000006e,0x0004003d,0x00000006,0x00000070,0x00000051,0x0004003d,0x00000006,
0x00000071,0x00000064,0x000500c2,0x00000006,0x00000072,0x00000070,0x00000071,0x0004003d,
0x00000006,0x00000073,0x00000068,0x000500c7,0x00000006,0x00000074,0x00000072,0x00000073,
0x0003003e,0x0000006f,0x00000074,0x0004003d,0x00000006,0x00000075,0x0000005d,0x000500b0,
0x00000045,0x00000077,0x00000075,0x00000076,0x000300f7,0x00000079,0x00000000,0x000400fa,
0x00000077,0x00000078,0x00000079,0x000200f8,0x00000078,0x0004003d,0x00000006,0x0000007c,
0x0000006f,0x0004003d,0x00000006,0x0000007e,0x0000005d,0x00050082,0x00000006,0x00000080,
0x0000007e,0x0000007f,0x000500c4,0x00000024,0x00000081,0x0000007d,0x00000080,0x0004007c,
0x00000006,0x00000082,0x00000081,0x000500c7,0x00000006,0x00000083,0x0000007c,0x00000082,
0x000500ab,0x00000045,0x00000085,0x00000083,0x00000084,0x0003003e,0x0000007b,0x00000085,
0x0004003d,0x00000045,0x00000087,0x0000007b,0x000300f7,0x0000008b,0x00000000,0x000400fa,
0x00000087,0x0000008a,0x0000008f,0x000200f8,0x0000008a,0x0004003d,0x00000006,0x0000008d,
0x0000005d,0x000500c4,0x00000024,0x0000008e,0x0000008c,0x0000008d,0x0003003e,0x00000089,
0x0000008e,0x000200f9,0x0000008b,0x000200f8,0x0000008f,0x0003003e,0x00000089,0x00000056,
0x000200f9,0x0000008b,0x000200f8,0x0000008b,0x0004003d,0x00000024,0x00000090,0x00000089,
0x0004007c,0x00000006,0x00000091,0x00000090,0x0003003e,0x00000086,0x00000091,0x0004003d,
0x00000006,0x00000092,0x00000086,0x0004003d,0x00000006,0x00000093,0x0000006f,0x000500c5,
0x00000006,0x00000094,0x00000093,0x00000092,0x0003003e,0x0000006f,0x00000094,0x000200f9,
0x00000079,0x000200f8,0x00000079,0x0004003d,0x00000006,0x00000096,0x0000006f,0x0004007c,
0x00000024,0x00000097,0x00000096,0x0003003e,0x00000095,0x00000097,0x0004003d,0x00000024,
0x0000009a,0x00000095,0x0004006f,0x0000000d,0x0000009b,0x0000009a,0x00050085,0x0000000d,
0x0000009c,0x00000099,0x0000009b,0x00050081,0x0000000d,0x0000009e,0x0000009c,0x0000009d,
0x0004003d,0x00000006,0x0000009f,0x00000068,0x00040070,0x0000000d,0x000000a0,0x0000009f,
0x00050088,0x0000000d,0x000000a1,0x0000009e,0x000000a0,0x0003003e,0x00000098,0x000000a1,
0x0004003d,0x0000000d,0x000000a2,0x00000098,0x000200fe,0x000000a2,0x00010038,0x00050036,
0x0000000d,0x00000015,0x00000000,0x00000013,0x00030037,0x00000012,0x00000014,0x000200f8,
0x00000016,0x0004003d,0x0000000d,0x000000a5,0x00000014,0x000200fe,0x000000a5,0x00010038,
0x00050036,0x00000006,0x0000001a,0x00000000,0x00000017,0x00030037,0x00000007,0x00000018,
0x00030037,0x00000012,0x00000019,0x000200f8,0x0000001b,0x0004003b,0x00000007,0x000000a8,
0x00000007,0x0004003d,0x0000000d,0x000000a9,0x00000019,0x0004007c,0x00000024,0x000000aa,
0x000000a9,0x0004007c,0x00000006,0x000000ab,0x000000aa,0x0003003e,0x000000a8,0x000000ab,
0x0004003d,0x00000006,0x000000ac,0x000000a8,0x000200fe,0x000000ac,0x00010038,0x00050036,
0x00000002,0x0000001e,0x00000000,0x0000001c,0x00030037,0x00000007,0x0000001d,0x000200f8,
0x0000001f,0x00050041,0x000000b6,0x000000b7,0x000000b5,0x00000084,0x0004003d,0x00000006,
0x000000b8,0x000000b7,0x00050041,0x00000026,0x000000b9,0x00000023,0x0000006b,0x0004003d,
0x00000006,0x000000ba,0x000000b9,0x00050086,0x00000006,0x000000bb,0x000000ba,0x00000058,
0x00050080,0x00000006,0x000000bc,0x000000b8,0x000000bb,0x0004003d,0x00000006,0x000000bd,
0x0000001d,0x00060041,0x0000005a,0x000000be,0x000000b2,0x00000056,0x000000bc,0x0003003e,
0x000000be,0x000000bd,0x000100fd,0x00010038
0x00000024,0x0000008c,0xffffffff,0x0004002b,0x0000000d,0x000000a0,0xbf800000,0x0003001d,
0x000000af,0x00000006,0x0003001e,0x000000b0,0x000000af,0x00040020,0x000000b1,0x00000002,
0x000000b0,0x0004003b,0x000000b1,0x000000b2,0x00000002,0x00040017,0x000000b3,0x00000006,
0x00000003,0x00040020,0x000000b4,0x00000001,0x000000b3,0x0004003b,0x000000b4,0x000000b5,
0x00000001,0x00040020,0x000000b6,0x00000001,0x00000006,0x0004002b,0x00000006,0x000000f1,
0x00000040,0x0006002c,0x000000b3,0x000000f2,0x000000f1,0x0000007f,0x0000007f,0x00050036,
0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,0x0004003b,0x00000007,
0x000000c7,0x00000007,0x0004003b,0x00000007,0x000000c8,0x00000007,0x0004003b,0x00000007,
0x000000d0,0x00000007,0x0004003b,0x00000012,0x000000dd,0x00000007,0x0004003b,0x00000007,
0x000000de,0x00000007,0x0004003b,0x00000012,0x000000e1,0x00000007,0x0004003b,0x00000012,
0x000000e2,0x00000007,0x0004003b,0x00000007,0x000000e5,0x00000007,0x0004003b,0x00000012,
0x000000e7,0x00000007,0x0004003b,0x00000007,0x000000ee,0x00000007,0x00050041,0x000000b6,
0x000000bf,0x000000b5,0x00000084,0x0004003d,0x00000006,0x000000c0,0x000000bf,0x00050041,
0x00000026,0x000000c1,0x00000023,0x00000056,0x0004003d,0x00000006,0x000000c2,0x000000c1,
0x000500ae,0x00000045,0x000000c3,0x000000c0,0x000000c2,0x000300f7,0x000000c5,0x00000000,
0x000400fa,0x000000c3,0x000000c4,0x000000c5,0x000200f8,0x000000c4,0x000100fd,0x000200f8,
0x000000c5,0x0003003e,0x000000c7,0x00000084,0x0003003e,0x000000c8,0x00000084,0x000200f9,
0x000000c9,0x000200f8,0x000000c9,0x000400f6,0x000000cb,0x000000cc,0x00000000,0x000200f9,
0x000000cd,0x000200f8,0x000000cd,0x0004003d,0x00000006,0x000000ce,0x000000c8,0x000500b0,
0x00000045,0x000000cf,0x000000ce,0x0000007f,0x000400fa,0x000000cf,0x000000ca,0x000000cb,
0x000200f8,0x000000ca,0x00050041,0x000000b6,0x000000d1,0x000000b5,0x00000084,0x0004003d,
0x00000006,0x000000d2,0x000000d1,0x00050084,0x00000006,0x000000d3,0x000000d2,0x0000007f,
0x0004003d,0x00000006,0x000000d4,0x000000c8,0x00050080,0x00000006,0x000000d5,0x000000d3,
0x000000d4,0x0003003e,0x000000d0,0x000000d5,0x0004003d,0x00000006,0x000000d6,0x000000d0,
0x00050041,0x00000026,0x000000d7,0x00000023,0x0000007d,0x0004003d,0x00000006,0x000000d8,
0x000000d7,0x000500ae,0x00000045,0x000000d9,0x000000d6,0x000000d8,0x000300f7,0x000000db,
0x00000000,0x000400fa,0x000000d9,0x000000da,0x000000db,0x000200f8,0x000000da,0x000200f9,
0x000000cb,0x000200f8,0x000000db,0x0004003d,0x00000006,0x000000df,0x000000d0,0x0003003e,
0x000000de,0x000000df,0x00050039,0x0000000d,0x000000e0,0x00000010,0x000000de,0x0003003e,
0x000000dd,0x000000e0,0x0004003d,0x0000000d,0x000000e3,0x000000dd,0x0003003e,0x000000e2,
0x000000e3,0x00050039,0x0000000d,0x000000e4,0x00000015,0x000000e2,0x0003003e,0x000000e1,
0x000000e4,0x0004003d,0x00000006,0x000000e6,0x000000d0,0x0003003e,0x000000e5,0x000000e6,
0x0004003d,0x0000000d,0x000000e8,0x000000e1,0x0003003e,0x000000e7,0x000000e8,0x00060039,
0x00000006,0x000000e9,0x0000001a,0x000000e5,0x000000e7,0x0004003d,0x00000006,0x000000ea,
0x000000c7,0x000500c5,0x00000006,0x000000eb,0x000000ea,0x000000e9,0x0003003e,0x000000c7,
0x000000eb,0x000200f9,0x000000cc,0x000200f8,0x000000cc,0x0004003d,0x00000006,0x000000ec,
0x000000c8,0x00050080,0x00000006,0x000000ed,0x000000ec,0x0000007d,0x0003003e,0x000000c8,
0x000000ed,0x000200f9,0x000000c9,0x000200f8,0x000000cb,0x0004003d,0x00000006,0x000000ef,
0x000000c7,0x0003003e,0x000000ee,0x000000ef,0x00050039,0x00000002,0x000000f0,0x0000001e,
0x000000ee,0x000100fd,0x00010038,0x00050036,0x00000006,0x0000000b,0x00000000,0x00000008,
0x00030037,0x00000007,0x00000009,0x00030037,0x00000007,0x0000000a,0x000200f8,0x0000000c,
0x0004003d,0x00000006,0x00000020,0x00000009,0x00050041,0x00000026,0x00000027,0x00000023,
0x00000025,0x0004003d,0x00000006,0x00000028,0x00000027,0x00050084,0x00000006,0x00000029,
0x00000020,0x00000028,0x0004003d,0x00000006,0x0000002a,0x0000000a,0x00050041,0x00000026,
0x0000002c,0x00000023,0x0000002b,0x0004003d,0x00000006,0x0000002d,0x0000002c,0x00050084,
0x00000006,0x0000002e,0x0000002a,0x0000002d,0x00050080,0x00000006,0x0000002f,0x00000029,
0x0000002e,0x00050041,0x00000026,0x00000031,0x00000023,0x00000030,0x0004003d,0x00000006,
0x00000032,0x00000031,0x00050080,0x00000006,0x00000033,0x0000002f,0x00000032,0x000200fe,
0x00000033,0x00010038,0x00050036,0x0000000d,0x00000010,0x00000000,0x0000000e,0x00030037,
0x00000007,0x0000000f,0x000200f8,0x00000011,0x0004003b,0x00000007,0x00000036,0x00000007,
0x0004003b,0x00000007,0x0000003c,0x00000007,0x0004003b,0x00000007,0x0000004b,0x00000007,
0x0004003b,0x00000007,0x0000004c,0x00000007,0x0004003b,0x00000007,0x0000004e,0x00000007,
0x0004003b,0x00000007,0x00000051,0x00000007,0x0004003b,0x00000007,0x0000005d,0x00000007,
0x0004003b,0x00000007,0x00000064,0x00000007,0x0004003b,0x00000007,0x00000068,0x00000007,
0x0004003b,0x00000007,0x0000006f,0x00000007,0x0004003b,0x0000007a,0x0000007b,0x00000007,
0x0004003b,0x00000007,0x00000086,0x00000007,0x0004003b,0x00000088,0x00000089,0x00000007,
0x0004003b,0x00000088,0x00000095,0x00000007,0x0004003b,0x00000012,0x00000098,0x00000007,
0x0004003d,0x00000006,0x00000037,0x0000000f,0x00050041,0x00000026,0x00000039,0x00000023,
0x00000038,0x0004003d,0x00000006,0x0000003a,0x00000039,0x00050086,0x00000006,0x0000003b,
0x00000037,0x0000003a,0x0003003e,0x00000036,0x0000003b,0x0004003d,0x00000006,0x0000003d,
0x0000000f,0x00050041,0x00000026,0x0000003e,0x00000023,0x00000038,0x0004003d,0x00000006,
0x0000003f,0x0000003e,0x00050089,0x00000006,0x00000040,0x0000003d,0x0000003f,0x0003003e,
0x0000003c,0x00000040,0x0004003d,0x00000006,0x00000041,0x0000003c,0x00050041,0x00000026,
0x00000043,0x00000023,0x00000042,0x0004003d,0x00000006,0x00000044,0x00000043,0x000500ae,
0x00000045,0x00000046,0x00000041,0x00000044,0x000300f7,0x00000048,0x00000000,0x000400fa,
0x00000046,0x00000047,0x00000048,0x000200f8,0x00000047,0x000200fe,0x00000049,0x000200f8,
0x00000048,0x0004003d,0x00000006,0x0000004d,0x00000036,0x0003003e,0x0000004c,0x0000004d,
0x0004003d,0x00000006,0x0000004f,0x0000003c,0x0003003e,0x0000004e,0x0000004f,0x00060039,
0x00000006,0x00000050,0x0000000b,0x0000004c,0x0000004e,0x0003003e,0x0000004b,0x00000050,
0x0004003d,0x00000006,0x00000057,0x0000004b,0x00050086,0x00000006,0x00000059,0x00000057,
0x00000058,0x00060041,0x0000005a,0x0000005b,0x00000055,0x00000056,0x00000059,0x0004003d,
0x00000006,0x0000005c,0x0000005b,0x0003003e,0x00000051,0x0000005c,0x0004003d,0x00000006,
0x0000005e,0x0000003c,0x000500aa,0x00000045,0x00000060,0x0000005e,0x0000005f,0x000600a9,
0x00000024,0x00000062,0x00000060,0x00000030,0x00000061,0x0004007c,0x00000006,0x00000063,
0x00000062,0x0003003e,0x0000005d,0x00000063,0x0004003d,0x00000006,0x00000066,0x0000003c,
0x00050084,0x00000006,0x00000067,0x00000065,0x00000066,0x0003003e,0x00000064,0x00000067,
0x0004003d,0x00000006,0x00000069,0x0000003c,0x000500aa,0x00000045,0x0000006a,0x00000069,
0x0000005f,0x000600a9,0x00000024,0x0000006d,0x0000006a,0x0000006b,0x0000006c,0x0004007c,
0x00000006,0x0000006e,0x0000006d,0x0003003e,0x00000068,0x0000006e,0x0004003d,0x00000006,
0x00000070,0x00000051,0x0004003d,0x00000006,0x00000071,0x00000064,0x000500c2,0x00000006,
0x00000072,0x00000070,0x00000071,0x0004003d,0x00000006,0x00000073,0x00000068,0x000500c7,
0x00000006,0x00000074,0x00000072,0x00000073,0x0003003e,0x0000006f,0x00000074,0x0004003d,
0x00000006,0x00000075,0x0000005d,0x000500b0,0x00000045,0x00000077,0x00000075,0x00000076,
0x000300f7,0x00000079,0x00000000,0x000400fa,0x00000077,0x00000078,0x00000079,0x000200f8,
0x00000078,0x0004003d,0x00000006,0x0000007c,0x0000006f,0x0004003d,0x00000006,0x0000007e,
0x0000005d,0x00050082,0x00000006,0x00000080,0x0000007e,0x0000007f,0x000500c4,0x00000024,
0x00000081,0x0000007d,0x00000080,0x0004007c,0x00000006,0x00000082,0x00000081,0x000500c7,
0x00000006,0x00000083,0x0000007c,0x00000082,0x000500ab,0x00000045,0x00000085,0x00000083,
0x00000084,0x0003003e,0x0000007b,0x00000085,0x0004003d,0x00000045,0x00000087,0x0000007b,
0x000300f7,0x0000008b,0x00000000,0x000400fa,0x00000087,0x0000008a,0x0000008f,0x000200f8,
0x0000008a,0x0004003d,0x00000006,0x0000008d,0x0000005d,0x000500c4,0x00000024,0x0000008e,
0x0000008c,0x0000008d,0x0003003e,0x00000089,0x0000008e,0x000200f9,0x0000008b,0x000200f8,
0x0000008f,0x0003003e,0x00000089,0x00000056,0x000200f9,0x0000008b,0x000200f8,0x0000008b,
0x0004003d,0x00000024,0x00000090,0x00000089,0x0004007c,0x00000006,0x00000091,0x00000090,
0x0003003e,0x00000086,0x00000091,0x0004003d,0x00000006,0x00000092,0x00000086,0x0004003d,
0x00000006,0x00000093,0x0000006f,0x000500c5,0x00000006,0x00000094,0x00000093,0x00000092,
0x0003003e,0x0000006f,0x00000094,0x000200f9,0x00000079,0x000200f8,0x00000079,0x0004003d,
0x00000006,0x00000096,0x0000006f,0x0004007c,0x00000024,0x00000097,0x00000096,0x0003003e,
0x00000095,0x00000097,0x0004003d,0x00000024,0x00000099,0x00000095,0x0004006f,0x0000000d,
0x0000009a,0x00000099,0x0004003d,0x00000006,0x0000009b,0x00000068,0x000500c2,0x00000006,
0x0000009c,0x0000009b,0x0000007d,0x00040070,0x0000000d,0x0000009d,0x0000009c,0x00050088,
0x0000000d,0x0000009e,0x0000009a,0x0000009d,0x0003003e,0x00000098,0x0000009e,0x0004003d,
0x0000000d,0x0000009f,0x00000098,0x0007000c,0x0000000d,0x000000a1,0x00000001,0x00000028,
0x0000009f,0x000000a0,0x0003003e,0x00000098,0x000000a1,0x0004003d,0x0000000d,0x000000a2,
0x00000098,0x000200fe,0x000000a2,0x00010038,0x00050036,0x0000000d,0x00000015,0x00000000,
0x00000013,0x00030037,0x00000012,0x00000014,0x000200f8,0x00000016,0x0004003d,0x0000000d,
0x000000a5,0x00000014,0x000200fe,0x000000a5,0x00010038,0x00050036,0x00000006,0x0000001a,
0x00000000,0x00000017,0x00030037,0x00000007,0x00000018,0x00030037,0x00000012,0x00000019,
0x000200f8,0x0000001b,0x0004003b,0x00000007,0x000000a8,0x00000007,0x0004003d,0x0000000d,
0x000000a9,0x00000019,0x0004007c,0x00000024,0x000000aa,0x000000a9,0x0004007c,0x00000006,
0x000000ab,0x000000aa,0x0003003e,0x000000a8,0x000000ab,0x0004003d,0x00000006,0x000000ac,
0x000000a8,0x000200fe,0x000000ac,0x00010038,0x00050036,0x00000002,0x0000001e,0x00000000,
0x0000001c,0x00030037,0x00000007,0x0000001d,0x000200f8,0x0000001f,0x00050041,0x000000b6,
0x000000b7,0x000000b5,0x00000084,0x0004003d,0x00000006,0x000000b8,0x000000b7,0x00050041,
0x00000026,0x000000b9,0x00000023,0x0000006b,0x0004003d,0x00000006,0x000000ba,0x000000b9,
0x00050086,0x00000006,0x000000bb,0x000000ba,0x00000058,0x00050080,0x00000006,0x000000bc,
0x000000b8,0x000000bb,0x0004003d,0x00000006,0x000000bd,0x0000001d,0x00060041,0x0000005a,
0x000000be,0x000000b2,0x00000056,0x000000bc,0x0003003e,0x000000be,0x000000bd,0x000100fd,
0x00010038
};
// Generated from:
......@@ -278,7 +279,8 @@ const uint32_t kConvertVertex_comp_00000018[] = {
// valueAsUint |= signExtension;
// }
// int valueAsInt = int(valueAsUint);
// float value =(2 * float(valueAsInt)+ 1)/ valueMask;
// float value = float(valueAsInt)/(valueMask >> 1);
// value = max(value, float(- 1));
//
// return value;
// }
......
......@@ -76,116 +76,116 @@ const uint32_t kConvertVertex_comp_00000019[] = {
0x00000006,0x00000076,0x00000020,0x00040020,0x0000007a,0x00000007,0x00000045,0x0004002b,
0x00000024,0x0000007d,0x00000001,0x0004002b,0x00000006,0x0000007f,0x00000001,0x0004002b,
0x00000006,0x00000084,0x00000000,0x00040020,0x00000088,0x00000007,0x00000024,0x0004002b,
0x00000024,0x0000008c,0xffffffff,0x0004002b,0x0000000d,0x00000099,0x40000000,0x0004002b,
0x0000000d,0x0000009d,0x3f800000,0x0003001d,0x000000af,0x00000006,0x0003001e,0x000000b0,
0x000000af,0x00040020,0x000000b1,0x00000002,0x000000b0,0x0004003b,0x000000b1,0x000000b2,
0x00000002,0x00040017,0x000000b3,0x00000006,0x00000003,0x00040020,0x000000b4,0x00000001,
0x000000b3,0x0004003b,0x000000b4,0x000000b5,0x00000001,0x00040020,0x000000b6,0x00000001,
0x00000006,0x0004002b,0x00000006,0x000000e2,0x00000040,0x0006002c,0x000000b3,0x000000e3,
0x000000e2,0x0000007f,0x0000007f,0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,
0x000200f8,0x00000005,0x0004003b,0x00000007,0x000000bf,0x00000007,0x0004003b,0x00000007,
0x000000c0,0x00000007,0x0004003b,0x00000007,0x000000c8,0x00000007,0x0004003b,0x00000012,
0x000000ce,0x00000007,0x0004003b,0x00000007,0x000000cf,0x00000007,0x0004003b,0x00000012,
0x000000d2,0x00000007,0x0004003b,0x00000012,0x000000d3,0x00000007,0x0004003b,0x00000007,
0x000000d6,0x00000007,0x0004003b,0x00000012,0x000000d8,0x00000007,0x0004003b,0x00000007,
0x000000df,0x00000007,0x0003003e,0x000000bf,0x00000084,0x0003003e,0x000000c0,0x00000084,
0x000200f9,0x000000c1,0x000200f8,0x000000c1,0x000400f6,0x000000c3,0x000000c4,0x00000000,
0x000200f9,0x000000c5,0x000200f8,0x000000c5,0x0004003d,0x00000006,0x000000c6,0x000000c0,
0x000500b0,0x00000045,0x000000c7,0x000000c6,0x0000007f,0x000400fa,0x000000c7,0x000000c2,
0x000000c3,0x000200f8,0x000000c2,0x00050041,0x000000b6,0x000000c9,0x000000b5,0x00000084,
0x0004003d,0x00000006,0x000000ca,0x000000c9,0x00050084,0x00000006,0x000000cb,0x000000ca,
0x0000007f,0x0004003d,0x00000006,0x000000cc,0x000000c0,0x00050080,0x00000006,0x000000cd,
0x000000cb,0x000000cc,0x0003003e,0x000000c8,0x000000cd,0x0004003d,0x00000006,0x000000d0,
0x000000c8,0x0003003e,0x000000cf,0x000000d0,0x00050039,0x0000000d,0x000000d1,0x00000010,
0x000000cf,0x0003003e,0x000000ce,0x000000d1,0x0004003d,0x0000000d,0x000000d4,0x000000ce,
0x0003003e,0x000000d3,0x000000d4,0x00050039,0x0000000d,0x000000d5,0x00000015,0x000000d3,
0x0003003e,0x000000d2,0x000000d5,0x0004003d,0x00000006,0x000000d7,0x000000c8,0x0003003e,
0x000000d6,0x000000d7,0x0004003d,0x0000000d,0x000000d9,0x000000d2,0x0003003e,0x000000d8,
0x000000d9,0x00060039,0x00000006,0x000000da,0x0000001a,0x000000d6,0x000000d8,0x0004003d,
0x00000006,0x000000db,0x000000bf,0x000500c5,0x00000006,0x000000dc,0x000000db,0x000000da,
0x0003003e,0x000000bf,0x000000dc,0x000200f9,0x000000c4,0x000200f8,0x000000c4,0x0004003d,
0x00000006,0x000000dd,0x000000c0,0x00050080,0x00000006,0x000000de,0x000000dd,0x0000007d,
0x0003003e,0x000000c0,0x000000de,0x000200f9,0x000000c1,0x000200f8,0x000000c3,0x0004003d,
0x00000006,0x000000e0,0x000000bf,0x0003003e,0x000000df,0x000000e0,0x00050039,0x00000002,
0x000000e1,0x0000001e,0x000000df,0x000100fd,0x00010038,0x00050036,0x00000006,0x0000000b,
0x00000000,0x00000008,0x00030037,0x00000007,0x00000009,0x00030037,0x00000007,0x0000000a,
0x000200f8,0x0000000c,0x0004003d,0x00000006,0x00000020,0x00000009,0x00050041,0x00000026,
0x00000027,0x00000023,0x00000025,0x0004003d,0x00000006,0x00000028,0x00000027,0x00050084,
0x00000006,0x00000029,0x00000020,0x00000028,0x0004003d,0x00000006,0x0000002a,0x0000000a,
0x00050041,0x00000026,0x0000002c,0x00000023,0x0000002b,0x0004003d,0x00000006,0x0000002d,
0x0000002c,0x00050084,0x00000006,0x0000002e,0x0000002a,0x0000002d,0x00050080,0x00000006,
0x0000002f,0x00000029,0x0000002e,0x00050041,0x00000026,0x00000031,0x00000023,0x00000030,
0x0004003d,0x00000006,0x00000032,0x00000031,0x00050080,0x00000006,0x00000033,0x0000002f,
0x00000032,0x000200fe,0x00000033,0x00010038,0x00050036,0x0000000d,0x00000010,0x00000000,
0x0000000e,0x00030037,0x00000007,0x0000000f,0x000200f8,0x00000011,0x0004003b,0x00000007,
0x00000036,0x00000007,0x0004003b,0x00000007,0x0000003c,0x00000007,0x0004003b,0x00000007,
0x0000004b,0x00000007,0x0004003b,0x00000007,0x0000004c,0x00000007,0x0004003b,0x00000007,
0x0000004e,0x00000007,0x0004003b,0x00000007,0x00000051,0x00000007,0x0004003b,0x00000007,
0x0000005d,0x00000007,0x0004003b,0x00000007,0x00000064,0x00000007,0x0004003b,0x00000007,
0x00000068,0x00000007,0x0004003b,0x00000007,0x0000006f,0x00000007,0x0004003b,0x0000007a,
0x0000007b,0x00000007,0x0004003b,0x00000007,0x00000086,0x00000007,0x0004003b,0x00000088,
0x00000089,0x00000007,0x0004003b,0x00000088,0x00000095,0x00000007,0x0004003b,0x00000012,
0x00000098,0x00000007,0x0004003d,0x00000006,0x00000037,0x0000000f,0x00050041,0x00000026,
0x00000039,0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003a,0x00000039,0x00050086,
0x00000006,0x0000003b,0x00000037,0x0000003a,0x0003003e,0x00000036,0x0000003b,0x0004003d,
0x00000006,0x0000003d,0x0000000f,0x00050041,0x00000026,0x0000003e,0x00000023,0x00000038,
0x0004003d,0x00000006,0x0000003f,0x0000003e,0x00050089,0x00000006,0x00000040,0x0000003d,
0x0000003f,0x0003003e,0x0000003c,0x00000040,0x0004003d,0x00000006,0x00000041,0x0000003c,
0x00050041,0x00000026,0x00000043,0x00000023,0x00000042,0x0004003d,0x00000006,0x00000044,
0x00000043,0x000500ae,0x00000045,0x00000046,0x00000041,0x00000044,0x000300f7,0x00000048,
0x00000000,0x000400fa,0x00000046,0x00000047,0x00000048,0x000200f8,0x00000047,0x000200fe,
0x00000049,0x000200f8,0x00000048,0x0004003d,0x00000006,0x0000004d,0x00000036,0x0003003e,
0x0000004c,0x0000004d,0x0004003d,0x00000006,0x0000004f,0x0000003c,0x0003003e,0x0000004e,
0x0000004f,0x00060039,0x00000006,0x00000050,0x0000000b,0x0000004c,0x0000004e,0x0003003e,
0x0000004b,0x00000050,0x0004003d,0x00000006,0x00000057,0x0000004b,0x00050086,0x00000006,
0x00000059,0x00000057,0x00000058,0x00060041,0x0000005a,0x0000005b,0x00000055,0x00000056,
0x00000059,0x0004003d,0x00000006,0x0000005c,0x0000005b,0x0003003e,0x00000051,0x0000005c,
0x0004003d,0x00000006,0x0000005e,0x0000003c,0x000500aa,0x00000045,0x00000060,0x0000005e,
0x0000005f,0x000600a9,0x00000024,0x00000062,0x00000060,0x00000030,0x00000061,0x0004007c,
0x00000006,0x00000063,0x00000062,0x0003003e,0x0000005d,0x00000063,0x0004003d,0x00000006,
0x00000066,0x0000003c,0x00050084,0x00000006,0x00000067,0x00000065,0x00000066,0x0003003e,
0x00000064,0x00000067,0x0004003d,0x00000006,0x00000069,0x0000003c,0x000500aa,0x00000045,
0x0000006a,0x00000069,0x0000005f,0x000600a9,0x00000024,0x0000006d,0x0000006a,0x0000006b,
0x0000006c,0x0004007c,0x00000006,0x0000006e,0x0000006d,0x0003003e,0x00000068,0x0000006e,
0x0004003d,0x00000006,0x00000070,0x00000051,0x0004003d,0x00000006,0x00000071,0x00000064,
0x000500c2,0x00000006,0x00000072,0x00000070,0x00000071,0x0004003d,0x00000006,0x00000073,
0x00000068,0x000500c7,0x00000006,0x00000074,0x00000072,0x00000073,0x0003003e,0x0000006f,
0x00000074,0x0004003d,0x00000006,0x00000075,0x0000005d,0x000500b0,0x00000045,0x00000077,
0x00000075,0x00000076,0x000300f7,0x00000079,0x00000000,0x000400fa,0x00000077,0x00000078,
0x00000079,0x000200f8,0x00000078,0x0004003d,0x00000006,0x0000007c,0x0000006f,0x0004003d,
0x00000006,0x0000007e,0x0000005d,0x00050082,0x00000006,0x00000080,0x0000007e,0x0000007f,
0x000500c4,0x00000024,0x00000081,0x0000007d,0x00000080,0x0004007c,0x00000006,0x00000082,
0x00000081,0x000500c7,0x00000006,0x00000083,0x0000007c,0x00000082,0x000500ab,0x00000045,
0x00000085,0x00000083,0x00000084,0x0003003e,0x0000007b,0x00000085,0x0004003d,0x00000045,
0x00000087,0x0000007b,0x000300f7,0x0000008b,0x00000000,0x000400fa,0x00000087,0x0000008a,
0x0000008f,0x000200f8,0x0000008a,0x0004003d,0x00000006,0x0000008d,0x0000005d,0x000500c4,
0x00000024,0x0000008e,0x0000008c,0x0000008d,0x0003003e,0x00000089,0x0000008e,0x000200f9,
0x0000008b,0x000200f8,0x0000008f,0x0003003e,0x00000089,0x00000056,0x000200f9,0x0000008b,
0x000200f8,0x0000008b,0x0004003d,0x00000024,0x00000090,0x00000089,0x0004007c,0x00000006,
0x00000091,0x00000090,0x0003003e,0x00000086,0x00000091,0x0004003d,0x00000006,0x00000092,
0x00000086,0x0004003d,0x00000006,0x00000093,0x0000006f,0x000500c5,0x00000006,0x00000094,
0x00000093,0x00000092,0x0003003e,0x0000006f,0x00000094,0x000200f9,0x00000079,0x000200f8,
0x00000079,0x0004003d,0x00000006,0x00000096,0x0000006f,0x0004007c,0x00000024,0x00000097,
0x00000096,0x0003003e,0x00000095,0x00000097,0x0004003d,0x00000024,0x0000009a,0x00000095,
0x0004006f,0x0000000d,0x0000009b,0x0000009a,0x00050085,0x0000000d,0x0000009c,0x00000099,
0x0000009b,0x00050081,0x0000000d,0x0000009e,0x0000009c,0x0000009d,0x0004003d,0x00000006,
0x0000009f,0x00000068,0x00040070,0x0000000d,0x000000a0,0x0000009f,0x00050088,0x0000000d,
0x000000a1,0x0000009e,0x000000a0,0x0003003e,0x00000098,0x000000a1,0x0004003d,0x0000000d,
0x000000a2,0x00000098,0x000200fe,0x000000a2,0x00010038,0x00050036,0x0000000d,0x00000015,
0x00000000,0x00000013,0x00030037,0x00000012,0x00000014,0x000200f8,0x00000016,0x0004003d,
0x0000000d,0x000000a5,0x00000014,0x000200fe,0x000000a5,0x00010038,0x00050036,0x00000006,
0x0000001a,0x00000000,0x00000017,0x00030037,0x00000007,0x00000018,0x00030037,0x00000012,
0x00000019,0x000200f8,0x0000001b,0x0004003b,0x00000007,0x000000a8,0x00000007,0x0004003d,
0x0000000d,0x000000a9,0x00000019,0x0004007c,0x00000024,0x000000aa,0x000000a9,0x0004007c,
0x00000006,0x000000ab,0x000000aa,0x0003003e,0x000000a8,0x000000ab,0x0004003d,0x00000006,
0x000000ac,0x000000a8,0x000200fe,0x000000ac,0x00010038,0x00050036,0x00000002,0x0000001e,
0x00000000,0x0000001c,0x00030037,0x00000007,0x0000001d,0x000200f8,0x0000001f,0x00050041,
0x000000b6,0x000000b7,0x000000b5,0x00000084,0x0004003d,0x00000006,0x000000b8,0x000000b7,
0x00050041,0x00000026,0x000000b9,0x00000023,0x0000006b,0x0004003d,0x00000006,0x000000ba,
0x000000b9,0x00050086,0x00000006,0x000000bb,0x000000ba,0x00000058,0x00050080,0x00000006,
0x000000bc,0x000000b8,0x000000bb,0x0004003d,0x00000006,0x000000bd,0x0000001d,0x00060041,
0x0000005a,0x000000be,0x000000b2,0x00000056,0x000000bc,0x0003003e,0x000000be,0x000000bd,
0x000100fd,0x00010038
0x00000024,0x0000008c,0xffffffff,0x0004002b,0x0000000d,0x000000a0,0xbf800000,0x0003001d,
0x000000af,0x00000006,0x0003001e,0x000000b0,0x000000af,0x00040020,0x000000b1,0x00000002,
0x000000b0,0x0004003b,0x000000b1,0x000000b2,0x00000002,0x00040017,0x000000b3,0x00000006,
0x00000003,0x00040020,0x000000b4,0x00000001,0x000000b3,0x0004003b,0x000000b4,0x000000b5,
0x00000001,0x00040020,0x000000b6,0x00000001,0x00000006,0x0004002b,0x00000006,0x000000e2,
0x00000040,0x0006002c,0x000000b3,0x000000e3,0x000000e2,0x0000007f,0x0000007f,0x00050036,
0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,0x0004003b,0x00000007,
0x000000bf,0x00000007,0x0004003b,0x00000007,0x000000c0,0x00000007,0x0004003b,0x00000007,
0x000000c8,0x00000007,0x0004003b,0x00000012,0x000000ce,0x00000007,0x0004003b,0x00000007,
0x000000cf,0x00000007,0x0004003b,0x00000012,0x000000d2,0x00000007,0x0004003b,0x00000012,
0x000000d3,0x00000007,0x0004003b,0x00000007,0x000000d6,0x00000007,0x0004003b,0x00000012,
0x000000d8,0x00000007,0x0004003b,0x00000007,0x000000df,0x00000007,0x0003003e,0x000000bf,
0x00000084,0x0003003e,0x000000c0,0x00000084,0x000200f9,0x000000c1,0x000200f8,0x000000c1,
0x000400f6,0x000000c3,0x000000c4,0x00000000,0x000200f9,0x000000c5,0x000200f8,0x000000c5,
0x0004003d,0x00000006,0x000000c6,0x000000c0,0x000500b0,0x00000045,0x000000c7,0x000000c6,
0x0000007f,0x000400fa,0x000000c7,0x000000c2,0x000000c3,0x000200f8,0x000000c2,0x00050041,
0x000000b6,0x000000c9,0x000000b5,0x00000084,0x0004003d,0x00000006,0x000000ca,0x000000c9,
0x00050084,0x00000006,0x000000cb,0x000000ca,0x0000007f,0x0004003d,0x00000006,0x000000cc,
0x000000c0,0x00050080,0x00000006,0x000000cd,0x000000cb,0x000000cc,0x0003003e,0x000000c8,
0x000000cd,0x0004003d,0x00000006,0x000000d0,0x000000c8,0x0003003e,0x000000cf,0x000000d0,
0x00050039,0x0000000d,0x000000d1,0x00000010,0x000000cf,0x0003003e,0x000000ce,0x000000d1,
0x0004003d,0x0000000d,0x000000d4,0x000000ce,0x0003003e,0x000000d3,0x000000d4,0x00050039,
0x0000000d,0x000000d5,0x00000015,0x000000d3,0x0003003e,0x000000d2,0x000000d5,0x0004003d,
0x00000006,0x000000d7,0x000000c8,0x0003003e,0x000000d6,0x000000d7,0x0004003d,0x0000000d,
0x000000d9,0x000000d2,0x0003003e,0x000000d8,0x000000d9,0x00060039,0x00000006,0x000000da,
0x0000001a,0x000000d6,0x000000d8,0x0004003d,0x00000006,0x000000db,0x000000bf,0x000500c5,
0x00000006,0x000000dc,0x000000db,0x000000da,0x0003003e,0x000000bf,0x000000dc,0x000200f9,
0x000000c4,0x000200f8,0x000000c4,0x0004003d,0x00000006,0x000000dd,0x000000c0,0x00050080,
0x00000006,0x000000de,0x000000dd,0x0000007d,0x0003003e,0x000000c0,0x000000de,0x000200f9,
0x000000c1,0x000200f8,0x000000c3,0x0004003d,0x00000006,0x000000e0,0x000000bf,0x0003003e,
0x000000df,0x000000e0,0x00050039,0x00000002,0x000000e1,0x0000001e,0x000000df,0x000100fd,
0x00010038,0x00050036,0x00000006,0x0000000b,0x00000000,0x00000008,0x00030037,0x00000007,
0x00000009,0x00030037,0x00000007,0x0000000a,0x000200f8,0x0000000c,0x0004003d,0x00000006,
0x00000020,0x00000009,0x00050041,0x00000026,0x00000027,0x00000023,0x00000025,0x0004003d,
0x00000006,0x00000028,0x00000027,0x00050084,0x00000006,0x00000029,0x00000020,0x00000028,
0x0004003d,0x00000006,0x0000002a,0x0000000a,0x00050041,0x00000026,0x0000002c,0x00000023,
0x0000002b,0x0004003d,0x00000006,0x0000002d,0x0000002c,0x00050084,0x00000006,0x0000002e,
0x0000002a,0x0000002d,0x00050080,0x00000006,0x0000002f,0x00000029,0x0000002e,0x00050041,
0x00000026,0x00000031,0x00000023,0x00000030,0x0004003d,0x00000006,0x00000032,0x00000031,
0x00050080,0x00000006,0x00000033,0x0000002f,0x00000032,0x000200fe,0x00000033,0x00010038,
0x00050036,0x0000000d,0x00000010,0x00000000,0x0000000e,0x00030037,0x00000007,0x0000000f,
0x000200f8,0x00000011,0x0004003b,0x00000007,0x00000036,0x00000007,0x0004003b,0x00000007,
0x0000003c,0x00000007,0x0004003b,0x00000007,0x0000004b,0x00000007,0x0004003b,0x00000007,
0x0000004c,0x00000007,0x0004003b,0x00000007,0x0000004e,0x00000007,0x0004003b,0x00000007,
0x00000051,0x00000007,0x0004003b,0x00000007,0x0000005d,0x00000007,0x0004003b,0x00000007,
0x00000064,0x00000007,0x0004003b,0x00000007,0x00000068,0x00000007,0x0004003b,0x00000007,
0x0000006f,0x00000007,0x0004003b,0x0000007a,0x0000007b,0x00000007,0x0004003b,0x00000007,
0x00000086,0x00000007,0x0004003b,0x00000088,0x00000089,0x00000007,0x0004003b,0x00000088,
0x00000095,0x00000007,0x0004003b,0x00000012,0x00000098,0x00000007,0x0004003d,0x00000006,
0x00000037,0x0000000f,0x00050041,0x00000026,0x00000039,0x00000023,0x00000038,0x0004003d,
0x00000006,0x0000003a,0x00000039,0x00050086,0x00000006,0x0000003b,0x00000037,0x0000003a,
0x0003003e,0x00000036,0x0000003b,0x0004003d,0x00000006,0x0000003d,0x0000000f,0x00050041,
0x00000026,0x0000003e,0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003f,0x0000003e,
0x00050089,0x00000006,0x00000040,0x0000003d,0x0000003f,0x0003003e,0x0000003c,0x00000040,
0x0004003d,0x00000006,0x00000041,0x0000003c,0x00050041,0x00000026,0x00000043,0x00000023,
0x00000042,0x0004003d,0x00000006,0x00000044,0x00000043,0x000500ae,0x00000045,0x00000046,
0x00000041,0x00000044,0x000300f7,0x00000048,0x00000000,0x000400fa,0x00000046,0x00000047,
0x00000048,0x000200f8,0x00000047,0x000200fe,0x00000049,0x000200f8,0x00000048,0x0004003d,
0x00000006,0x0000004d,0x00000036,0x0003003e,0x0000004c,0x0000004d,0x0004003d,0x00000006,
0x0000004f,0x0000003c,0x0003003e,0x0000004e,0x0000004f,0x00060039,0x00000006,0x00000050,
0x0000000b,0x0000004c,0x0000004e,0x0003003e,0x0000004b,0x00000050,0x0004003d,0x00000006,
0x00000057,0x0000004b,0x00050086,0x00000006,0x00000059,0x00000057,0x00000058,0x00060041,
0x0000005a,0x0000005b,0x00000055,0x00000056,0x00000059,0x0004003d,0x00000006,0x0000005c,
0x0000005b,0x0003003e,0x00000051,0x0000005c,0x0004003d,0x00000006,0x0000005e,0x0000003c,
0x000500aa,0x00000045,0x00000060,0x0000005e,0x0000005f,0x000600a9,0x00000024,0x00000062,
0x00000060,0x00000030,0x00000061,0x0004007c,0x00000006,0x00000063,0x00000062,0x0003003e,
0x0000005d,0x00000063,0x0004003d,0x00000006,0x00000066,0x0000003c,0x00050084,0x00000006,
0x00000067,0x00000065,0x00000066,0x0003003e,0x00000064,0x00000067,0x0004003d,0x00000006,
0x00000069,0x0000003c,0x000500aa,0x00000045,0x0000006a,0x00000069,0x0000005f,0x000600a9,
0x00000024,0x0000006d,0x0000006a,0x0000006b,0x0000006c,0x0004007c,0x00000006,0x0000006e,
0x0000006d,0x0003003e,0x00000068,0x0000006e,0x0004003d,0x00000006,0x00000070,0x00000051,
0x0004003d,0x00000006,0x00000071,0x00000064,0x000500c2,0x00000006,0x00000072,0x00000070,
0x00000071,0x0004003d,0x00000006,0x00000073,0x00000068,0x000500c7,0x00000006,0x00000074,
0x00000072,0x00000073,0x0003003e,0x0000006f,0x00000074,0x0004003d,0x00000006,0x00000075,
0x0000005d,0x000500b0,0x00000045,0x00000077,0x00000075,0x00000076,0x000300f7,0x00000079,
0x00000000,0x000400fa,0x00000077,0x00000078,0x00000079,0x000200f8,0x00000078,0x0004003d,
0x00000006,0x0000007c,0x0000006f,0x0004003d,0x00000006,0x0000007e,0x0000005d,0x00050082,
0x00000006,0x00000080,0x0000007e,0x0000007f,0x000500c4,0x00000024,0x00000081,0x0000007d,
0x00000080,0x0004007c,0x00000006,0x00000082,0x00000081,0x000500c7,0x00000006,0x00000083,
0x0000007c,0x00000082,0x000500ab,0x00000045,0x00000085,0x00000083,0x00000084,0x0003003e,
0x0000007b,0x00000085,0x0004003d,0x00000045,0x00000087,0x0000007b,0x000300f7,0x0000008b,
0x00000000,0x000400fa,0x00000087,0x0000008a,0x0000008f,0x000200f8,0x0000008a,0x0004003d,
0x00000006,0x0000008d,0x0000005d,0x000500c4,0x00000024,0x0000008e,0x0000008c,0x0000008d,
0x0003003e,0x00000089,0x0000008e,0x000200f9,0x0000008b,0x000200f8,0x0000008f,0x0003003e,
0x00000089,0x00000056,0x000200f9,0x0000008b,0x000200f8,0x0000008b,0x0004003d,0x00000024,
0x00000090,0x00000089,0x0004007c,0x00000006,0x00000091,0x00000090,0x0003003e,0x00000086,
0x00000091,0x0004003d,0x00000006,0x00000092,0x00000086,0x0004003d,0x00000006,0x00000093,
0x0000006f,0x000500c5,0x00000006,0x00000094,0x00000093,0x00000092,0x0003003e,0x0000006f,
0x00000094,0x000200f9,0x00000079,0x000200f8,0x00000079,0x0004003d,0x00000006,0x00000096,
0x0000006f,0x0004007c,0x00000024,0x00000097,0x00000096,0x0003003e,0x00000095,0x00000097,
0x0004003d,0x00000024,0x00000099,0x00000095,0x0004006f,0x0000000d,0x0000009a,0x00000099,
0x0004003d,0x00000006,0x0000009b,0x00000068,0x000500c2,0x00000006,0x0000009c,0x0000009b,
0x0000007d,0x00040070,0x0000000d,0x0000009d,0x0000009c,0x00050088,0x0000000d,0x0000009e,
0x0000009a,0x0000009d,0x0003003e,0x00000098,0x0000009e,0x0004003d,0x0000000d,0x0000009f,
0x00000098,0x0007000c,0x0000000d,0x000000a1,0x00000001,0x00000028,0x0000009f,0x000000a0,
0x0003003e,0x00000098,0x000000a1,0x0004003d,0x0000000d,0x000000a2,0x00000098,0x000200fe,
0x000000a2,0x00010038,0x00050036,0x0000000d,0x00000015,0x00000000,0x00000013,0x00030037,
0x00000012,0x00000014,0x000200f8,0x00000016,0x0004003d,0x0000000d,0x000000a5,0x00000014,
0x000200fe,0x000000a5,0x00010038,0x00050036,0x00000006,0x0000001a,0x00000000,0x00000017,
0x00030037,0x00000007,0x00000018,0x00030037,0x00000012,0x00000019,0x000200f8,0x0000001b,
0x0004003b,0x00000007,0x000000a8,0x00000007,0x0004003d,0x0000000d,0x000000a9,0x00000019,
0x0004007c,0x00000024,0x000000aa,0x000000a9,0x0004007c,0x00000006,0x000000ab,0x000000aa,
0x0003003e,0x000000a8,0x000000ab,0x0004003d,0x00000006,0x000000ac,0x000000a8,0x000200fe,
0x000000ac,0x00010038,0x00050036,0x00000002,0x0000001e,0x00000000,0x0000001c,0x00030037,
0x00000007,0x0000001d,0x000200f8,0x0000001f,0x00050041,0x000000b6,0x000000b7,0x000000b5,
0x00000084,0x0004003d,0x00000006,0x000000b8,0x000000b7,0x00050041,0x00000026,0x000000b9,
0x00000023,0x0000006b,0x0004003d,0x00000006,0x000000ba,0x000000b9,0x00050086,0x00000006,
0x000000bb,0x000000ba,0x00000058,0x00050080,0x00000006,0x000000bc,0x000000b8,0x000000bb,
0x0004003d,0x00000006,0x000000bd,0x0000001d,0x00060041,0x0000005a,0x000000be,0x000000b2,
0x00000056,0x000000bc,0x0003003e,0x000000be,0x000000bd,0x000100fd,0x00010038
};
// Generated from:
......@@ -270,7 +270,8 @@ const uint32_t kConvertVertex_comp_00000019[] = {
// valueAsUint |= signExtension;
// }
// int valueAsInt = int(valueAsUint);
// float value =(2 * float(valueAsInt)+ 1)/ valueMask;
// float value = float(valueAsInt)/(valueMask >> 1);
// value = max(value, float(- 1));
//
// return value;
// }
......
......@@ -76,131 +76,131 @@ const uint32_t kConvertVertex_comp_0000001E[] = {
0x00000024,0x00000077,0x000003ff,0x0004002b,0x00000006,0x00000081,0x00000020,0x00040020,
0x00000085,0x00000007,0x00000045,0x0004002b,0x00000024,0x00000088,0x00000001,0x0004002b,
0x00000006,0x0000008a,0x00000001,0x00040020,0x00000092,0x00000007,0x00000024,0x0004002b,
0x00000024,0x00000096,0xffffffff,0x0004002b,0x0000000d,0x000000a3,0x40000000,0x0004002b,
0x0000000d,0x000000a7,0x3f800000,0x0003001d,0x000000b9,0x00000006,0x0003001e,0x000000ba,
0x000000b9,0x00040020,0x000000bb,0x00000002,0x000000ba,0x0004003b,0x000000bb,0x000000bc,
0x00000002,0x00040017,0x000000bd,0x00000006,0x00000003,0x00040020,0x000000be,0x00000001,
0x000000bd,0x0004003b,0x000000be,0x000000bf,0x00000001,0x00040020,0x000000c0,0x00000001,
0x00000006,0x0004002b,0x00000006,0x000000fb,0x00000040,0x0006002c,0x000000bd,0x000000fc,
0x000000fb,0x0000008a,0x0000008a,0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,
0x000200f8,0x00000005,0x0004003b,0x00000007,0x000000d1,0x00000007,0x0004003b,0x00000007,
0x000000d2,0x00000007,0x0004003b,0x00000007,0x000000da,0x00000007,0x0004003b,0x00000012,
0x000000e7,0x00000007,0x0004003b,0x00000007,0x000000e8,0x00000007,0x0004003b,0x00000012,
0x000000eb,0x00000007,0x0004003b,0x00000012,0x000000ec,0x00000007,0x0004003b,0x00000007,
0x000000ef,0x00000007,0x0004003b,0x00000012,0x000000f1,0x00000007,0x0004003b,0x00000007,
0x000000f8,0x00000007,0x00050041,0x000000c0,0x000000c9,0x000000bf,0x0000006a,0x0004003d,
0x00000006,0x000000ca,0x000000c9,0x00050041,0x00000026,0x000000cb,0x00000023,0x00000056,
0x0004003d,0x00000006,0x000000cc,0x000000cb,0x000500ae,0x00000045,0x000000cd,0x000000ca,
0x000000cc,0x000300f7,0x000000cf,0x00000000,0x000400fa,0x000000cd,0x000000ce,0x000000cf,
0x000200f8,0x000000ce,0x000100fd,0x000200f8,0x000000cf,0x0003003e,0x000000d1,0x0000006a,
0x0003003e,0x000000d2,0x0000006a,0x000200f9,0x000000d3,0x000200f8,0x000000d3,0x000400f6,
0x000000d5,0x000000d6,0x00000000,0x000200f9,0x000000d7,0x000200f8,0x000000d7,0x0004003d,
0x00000006,0x000000d8,0x000000d2,0x000500b0,0x00000045,0x000000d9,0x000000d8,0x0000008a,
0x000400fa,0x000000d9,0x000000d4,0x000000d5,0x000200f8,0x000000d4,0x00050041,0x000000c0,
0x000000db,0x000000bf,0x0000006a,0x0004003d,0x00000006,0x000000dc,0x000000db,0x00050084,
0x00000006,0x000000dd,0x000000dc,0x0000008a,0x0004003d,0x00000006,0x000000de,0x000000d2,
0x00050080,0x00000006,0x000000df,0x000000dd,0x000000de,0x0003003e,0x000000da,0x000000df,
0x0004003d,0x00000006,0x000000e0,0x000000da,0x00050041,0x00000026,0x000000e1,0x00000023,
0x00000088,0x0004003d,0x00000006,0x000000e2,0x000000e1,0x000500ae,0x00000045,0x000000e3,
0x000000e0,0x000000e2,0x000300f7,0x000000e5,0x00000000,0x000400fa,0x000000e3,0x000000e4,
0x000000e5,0x000200f8,0x000000e4,0x000200f9,0x000000d5,0x000200f8,0x000000e5,0x0004003d,
0x00000006,0x000000e9,0x000000da,0x0003003e,0x000000e8,0x000000e9,0x00050039,0x0000000d,
0x000000ea,0x00000010,0x000000e8,0x0003003e,0x000000e7,0x000000ea,0x0004003d,0x0000000d,
0x000000ed,0x000000e7,0x0003003e,0x000000ec,0x000000ed,0x00050039,0x0000000d,0x000000ee,
0x00000015,0x000000ec,0x0003003e,0x000000eb,0x000000ee,0x0004003d,0x00000006,0x000000f0,
0x000000da,0x0003003e,0x000000ef,0x000000f0,0x0004003d,0x0000000d,0x000000f2,0x000000eb,
0x0003003e,0x000000f1,0x000000f2,0x00060039,0x00000006,0x000000f3,0x0000001a,0x000000ef,
0x000000f1,0x0004003d,0x00000006,0x000000f4,0x000000d1,0x000500c5,0x00000006,0x000000f5,
0x000000f4,0x000000f3,0x0003003e,0x000000d1,0x000000f5,0x000200f9,0x000000d6,0x000200f8,
0x000000d6,0x0004003d,0x00000006,0x000000f6,0x000000d2,0x00050080,0x00000006,0x000000f7,
0x000000f6,0x00000088,0x0003003e,0x000000d2,0x000000f7,0x000200f9,0x000000d3,0x000200f8,
0x000000d5,0x0004003d,0x00000006,0x000000f9,0x000000d1,0x0003003e,0x000000f8,0x000000f9,
0x00050039,0x00000002,0x000000fa,0x0000001e,0x000000f8,0x000100fd,0x00010038,0x00050036,
0x00000006,0x0000000b,0x00000000,0x00000008,0x00030037,0x00000007,0x00000009,0x00030037,
0x00000007,0x0000000a,0x000200f8,0x0000000c,0x0004003d,0x00000006,0x00000020,0x00000009,
0x00050041,0x00000026,0x00000027,0x00000023,0x00000025,0x0004003d,0x00000006,0x00000028,
0x00000027,0x00050084,0x00000006,0x00000029,0x00000020,0x00000028,0x0004003d,0x00000006,
0x0000002a,0x0000000a,0x00050041,0x00000026,0x0000002c,0x00000023,0x0000002b,0x0004003d,
0x00000006,0x0000002d,0x0000002c,0x00050084,0x00000006,0x0000002e,0x0000002a,0x0000002d,
0x00050080,0x00000006,0x0000002f,0x00000029,0x0000002e,0x00050041,0x00000026,0x00000031,
0x00000023,0x00000030,0x0004003d,0x00000006,0x00000032,0x00000031,0x00050080,0x00000006,
0x00000033,0x0000002f,0x00000032,0x000200fe,0x00000033,0x00010038,0x00050036,0x0000000d,
0x00000010,0x00000000,0x0000000e,0x00030037,0x00000007,0x0000000f,0x000200f8,0x00000011,
0x0004003b,0x00000007,0x00000036,0x00000007,0x0004003b,0x00000007,0x0000003c,0x00000007,
0x0004003b,0x00000007,0x0000004b,0x00000007,0x0004003b,0x00000007,0x0000004c,0x00000007,
0x0004003b,0x00000007,0x0000004e,0x00000007,0x0004003b,0x00000007,0x00000051,0x00000007,
0x0004003b,0x00000007,0x0000005d,0x00000007,0x0004003b,0x00000007,0x00000064,0x00000007,
0x0004003b,0x00000007,0x00000067,0x00000007,0x0004003b,0x00000007,0x00000073,0x00000007,
0x0004003b,0x00000007,0x0000007a,0x00000007,0x0004003b,0x00000085,0x00000086,0x00000007,
0x0004003b,0x00000007,0x00000090,0x00000007,0x0004003b,0x00000092,0x00000093,0x00000007,
0x0004003b,0x00000092,0x0000009f,0x00000007,0x0004003b,0x00000012,0x000000a2,0x00000007,
0x0004003d,0x00000006,0x00000037,0x0000000f,0x00050041,0x00000026,0x00000039,0x00000023,
0x00000038,0x0004003d,0x00000006,0x0000003a,0x00000039,0x00050086,0x00000006,0x0000003b,
0x00000037,0x0000003a,0x0003003e,0x00000036,0x0000003b,0x0004003d,0x00000006,0x0000003d,
0x0000000f,0x00050041,0x00000026,0x0000003e,0x00000023,0x00000038,0x0004003d,0x00000006,
0x0000003f,0x0000003e,0x00050089,0x00000006,0x00000040,0x0000003d,0x0000003f,0x0003003e,
0x0000003c,0x00000040,0x0004003d,0x00000006,0x00000041,0x0000003c,0x00050041,0x00000026,
0x00000043,0x00000023,0x00000042,0x0004003d,0x00000006,0x00000044,0x00000043,0x000500ae,
0x00000045,0x00000046,0x00000041,0x00000044,0x000300f7,0x00000048,0x00000000,0x000400fa,
0x00000046,0x00000047,0x00000048,0x000200f8,0x00000047,0x000200fe,0x00000049,0x000200f8,
0x00000048,0x0004003d,0x00000006,0x0000004d,0x00000036,0x0003003e,0x0000004c,0x0000004d,
0x0004003d,0x00000006,0x0000004f,0x0000003c,0x0003003e,0x0000004e,0x0000004f,0x00060039,
0x00000006,0x00000050,0x0000000b,0x0000004c,0x0000004e,0x0003003e,0x0000004b,0x00000050,
0x0004003d,0x00000006,0x00000057,0x0000004b,0x00050086,0x00000006,0x00000059,0x00000057,
0x00000058,0x00060041,0x0000005a,0x0000005b,0x00000055,0x00000056,0x00000059,0x0004003d,
0x00000006,0x0000005c,0x0000005b,0x0003003e,0x00000051,0x0000005c,0x0004003d,0x00000006,
0x0000005e,0x0000003c,0x000500aa,0x00000045,0x00000060,0x0000005e,0x0000005f,0x000600a9,
0x00000024,0x00000062,0x00000060,0x00000030,0x00000061,0x0004007c,0x00000006,0x00000063,
0x00000062,0x0003003e,0x0000005d,0x00000063,0x0004003d,0x00000006,0x00000065,0x0000003c,
0x000500aa,0x00000045,0x00000066,0x00000065,0x0000005f,0x000300f7,0x00000069,0x00000000,
0x000400fa,0x00000066,0x00000068,0x0000006b,0x000200f8,0x00000068,0x0003003e,0x00000067,
0x0000006a,0x000200f9,0x00000069,0x000200f8,0x0000006b,0x0004003d,0x00000006,0x0000006c,
0x0000005d,0x0004003d,0x00000006,0x0000006e,0x0000003c,0x00050082,0x00000006,0x0000006f,
0x0000006d,0x0000006e,0x00050084,0x00000006,0x00000070,0x0000006c,0x0000006f,0x00050080,
0x00000006,0x00000071,0x00000070,0x0000006d,0x0003003e,0x00000067,0x00000071,0x000200f9,
0x00000069,0x000200f8,0x00000069,0x0004003d,0x00000006,0x00000072,0x00000067,0x0003003e,
0x00000064,0x00000072,0x0004003d,0x00000006,0x00000074,0x0000003c,0x000500aa,0x00000045,
0x00000075,0x00000074,0x0000005f,0x000600a9,0x00000024,0x00000078,0x00000075,0x00000076,
0x00000077,0x0004007c,0x00000006,0x00000079,0x00000078,0x0003003e,0x00000073,0x00000079,
0x0004003d,0x00000006,0x0000007b,0x00000051,0x0004003d,0x00000006,0x0000007c,0x00000064,
0x000500c2,0x00000006,0x0000007d,0x0000007b,0x0000007c,0x0004003d,0x00000006,0x0000007e,
0x00000073,0x000500c7,0x00000006,0x0000007f,0x0000007d,0x0000007e,0x0003003e,0x0000007a,
0x0000007f,0x0004003d,0x00000006,0x00000080,0x0000005d,0x000500b0,0x00000045,0x00000082,
0x00000080,0x00000081,0x000300f7,0x00000084,0x00000000,0x000400fa,0x00000082,0x00000083,
0x00000084,0x000200f8,0x00000083,0x0004003d,0x00000006,0x00000087,0x0000007a,0x0004003d,
0x00000006,0x00000089,0x0000005d,0x00050082,0x00000006,0x0000008b,0x00000089,0x0000008a,
0x000500c4,0x00000024,0x0000008c,0x00000088,0x0000008b,0x0004007c,0x00000006,0x0000008d,
0x0000008c,0x000500c7,0x00000006,0x0000008e,0x00000087,0x0000008d,0x000500ab,0x00000045,
0x0000008f,0x0000008e,0x0000006a,0x0003003e,0x00000086,0x0000008f,0x0004003d,0x00000045,
0x00000091,0x00000086,0x000300f7,0x00000095,0x00000000,0x000400fa,0x00000091,0x00000094,
0x00000099,0x000200f8,0x00000094,0x0004003d,0x00000006,0x00000097,0x0000005d,0x000500c4,
0x00000024,0x00000098,0x00000096,0x00000097,0x0003003e,0x00000093,0x00000098,0x000200f9,
0x00000095,0x000200f8,0x00000099,0x0003003e,0x00000093,0x00000056,0x000200f9,0x00000095,
0x000200f8,0x00000095,0x0004003d,0x00000024,0x0000009a,0x00000093,0x0004007c,0x00000006,
0x0000009b,0x0000009a,0x0003003e,0x00000090,0x0000009b,0x0004003d,0x00000006,0x0000009c,
0x00000090,0x0004003d,0x00000006,0x0000009d,0x0000007a,0x000500c5,0x00000006,0x0000009e,
0x0000009d,0x0000009c,0x0003003e,0x0000007a,0x0000009e,0x000200f9,0x00000084,0x000200f8,
0x00000084,0x0004003d,0x00000006,0x000000a0,0x0000007a,0x0004007c,0x00000024,0x000000a1,
0x000000a0,0x0003003e,0x0000009f,0x000000a1,0x0004003d,0x00000024,0x000000a4,0x0000009f,
0x0004006f,0x0000000d,0x000000a5,0x000000a4,0x00050085,0x0000000d,0x000000a6,0x000000a3,
0x000000a5,0x00050081,0x0000000d,0x000000a8,0x000000a6,0x000000a7,0x0004003d,0x00000006,
0x000000a9,0x00000073,0x00040070,0x0000000d,0x000000aa,0x000000a9,0x00050088,0x0000000d,
0x000000ab,0x000000a8,0x000000aa,0x0003003e,0x000000a2,0x000000ab,0x0004003d,0x0000000d,
0x000000ac,0x000000a2,0x000200fe,0x000000ac,0x00010038,0x00050036,0x0000000d,0x00000015,
0x00000000,0x00000013,0x00030037,0x00000012,0x00000014,0x000200f8,0x00000016,0x0004003d,
0x0000000d,0x000000af,0x00000014,0x000200fe,0x000000af,0x00010038,0x00050036,0x00000006,
0x0000001a,0x00000000,0x00000017,0x00030037,0x00000007,0x00000018,0x00030037,0x00000012,
0x00000019,0x000200f8,0x0000001b,0x0004003b,0x00000007,0x000000b2,0x00000007,0x0004003d,
0x0000000d,0x000000b3,0x00000019,0x0004007c,0x00000024,0x000000b4,0x000000b3,0x0004007c,
0x00000006,0x000000b5,0x000000b4,0x0003003e,0x000000b2,0x000000b5,0x0004003d,0x00000006,
0x000000b6,0x000000b2,0x000200fe,0x000000b6,0x00010038,0x00050036,0x00000002,0x0000001e,
0x00000000,0x0000001c,0x00030037,0x00000007,0x0000001d,0x000200f8,0x0000001f,0x00050041,
0x000000c0,0x000000c1,0x000000bf,0x0000006a,0x0004003d,0x00000006,0x000000c2,0x000000c1,
0x00050041,0x00000026,0x000000c3,0x00000023,0x00000076,0x0004003d,0x00000006,0x000000c4,
0x000000c3,0x00050086,0x00000006,0x000000c5,0x000000c4,0x00000058,0x00050080,0x00000006,
0x000000c6,0x000000c2,0x000000c5,0x0004003d,0x00000006,0x000000c7,0x0000001d,0x00060041,
0x0000005a,0x000000c8,0x000000bc,0x00000056,0x000000c6,0x0003003e,0x000000c8,0x000000c7,
0x000100fd,0x00010038
0x00000024,0x00000096,0xffffffff,0x0004002b,0x0000000d,0x000000aa,0xbf800000,0x0003001d,
0x000000b9,0x00000006,0x0003001e,0x000000ba,0x000000b9,0x00040020,0x000000bb,0x00000002,
0x000000ba,0x0004003b,0x000000bb,0x000000bc,0x00000002,0x00040017,0x000000bd,0x00000006,
0x00000003,0x00040020,0x000000be,0x00000001,0x000000bd,0x0004003b,0x000000be,0x000000bf,
0x00000001,0x00040020,0x000000c0,0x00000001,0x00000006,0x0004002b,0x00000006,0x000000fb,
0x00000040,0x0006002c,0x000000bd,0x000000fc,0x000000fb,0x0000008a,0x0000008a,0x00050036,
0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,0x0004003b,0x00000007,
0x000000d1,0x00000007,0x0004003b,0x00000007,0x000000d2,0x00000007,0x0004003b,0x00000007,
0x000000da,0x00000007,0x0004003b,0x00000012,0x000000e7,0x00000007,0x0004003b,0x00000007,
0x000000e8,0x00000007,0x0004003b,0x00000012,0x000000eb,0x00000007,0x0004003b,0x00000012,
0x000000ec,0x00000007,0x0004003b,0x00000007,0x000000ef,0x00000007,0x0004003b,0x00000012,
0x000000f1,0x00000007,0x0004003b,0x00000007,0x000000f8,0x00000007,0x00050041,0x000000c0,
0x000000c9,0x000000bf,0x0000006a,0x0004003d,0x00000006,0x000000ca,0x000000c9,0x00050041,
0x00000026,0x000000cb,0x00000023,0x00000056,0x0004003d,0x00000006,0x000000cc,0x000000cb,
0x000500ae,0x00000045,0x000000cd,0x000000ca,0x000000cc,0x000300f7,0x000000cf,0x00000000,
0x000400fa,0x000000cd,0x000000ce,0x000000cf,0x000200f8,0x000000ce,0x000100fd,0x000200f8,
0x000000cf,0x0003003e,0x000000d1,0x0000006a,0x0003003e,0x000000d2,0x0000006a,0x000200f9,
0x000000d3,0x000200f8,0x000000d3,0x000400f6,0x000000d5,0x000000d6,0x00000000,0x000200f9,
0x000000d7,0x000200f8,0x000000d7,0x0004003d,0x00000006,0x000000d8,0x000000d2,0x000500b0,
0x00000045,0x000000d9,0x000000d8,0x0000008a,0x000400fa,0x000000d9,0x000000d4,0x000000d5,
0x000200f8,0x000000d4,0x00050041,0x000000c0,0x000000db,0x000000bf,0x0000006a,0x0004003d,
0x00000006,0x000000dc,0x000000db,0x00050084,0x00000006,0x000000dd,0x000000dc,0x0000008a,
0x0004003d,0x00000006,0x000000de,0x000000d2,0x00050080,0x00000006,0x000000df,0x000000dd,
0x000000de,0x0003003e,0x000000da,0x000000df,0x0004003d,0x00000006,0x000000e0,0x000000da,
0x00050041,0x00000026,0x000000e1,0x00000023,0x00000088,0x0004003d,0x00000006,0x000000e2,
0x000000e1,0x000500ae,0x00000045,0x000000e3,0x000000e0,0x000000e2,0x000300f7,0x000000e5,
0x00000000,0x000400fa,0x000000e3,0x000000e4,0x000000e5,0x000200f8,0x000000e4,0x000200f9,
0x000000d5,0x000200f8,0x000000e5,0x0004003d,0x00000006,0x000000e9,0x000000da,0x0003003e,
0x000000e8,0x000000e9,0x00050039,0x0000000d,0x000000ea,0x00000010,0x000000e8,0x0003003e,
0x000000e7,0x000000ea,0x0004003d,0x0000000d,0x000000ed,0x000000e7,0x0003003e,0x000000ec,
0x000000ed,0x00050039,0x0000000d,0x000000ee,0x00000015,0x000000ec,0x0003003e,0x000000eb,
0x000000ee,0x0004003d,0x00000006,0x000000f0,0x000000da,0x0003003e,0x000000ef,0x000000f0,
0x0004003d,0x0000000d,0x000000f2,0x000000eb,0x0003003e,0x000000f1,0x000000f2,0x00060039,
0x00000006,0x000000f3,0x0000001a,0x000000ef,0x000000f1,0x0004003d,0x00000006,0x000000f4,
0x000000d1,0x000500c5,0x00000006,0x000000f5,0x000000f4,0x000000f3,0x0003003e,0x000000d1,
0x000000f5,0x000200f9,0x000000d6,0x000200f8,0x000000d6,0x0004003d,0x00000006,0x000000f6,
0x000000d2,0x00050080,0x00000006,0x000000f7,0x000000f6,0x00000088,0x0003003e,0x000000d2,
0x000000f7,0x000200f9,0x000000d3,0x000200f8,0x000000d5,0x0004003d,0x00000006,0x000000f9,
0x000000d1,0x0003003e,0x000000f8,0x000000f9,0x00050039,0x00000002,0x000000fa,0x0000001e,
0x000000f8,0x000100fd,0x00010038,0x00050036,0x00000006,0x0000000b,0x00000000,0x00000008,
0x00030037,0x00000007,0x00000009,0x00030037,0x00000007,0x0000000a,0x000200f8,0x0000000c,
0x0004003d,0x00000006,0x00000020,0x00000009,0x00050041,0x00000026,0x00000027,0x00000023,
0x00000025,0x0004003d,0x00000006,0x00000028,0x00000027,0x00050084,0x00000006,0x00000029,
0x00000020,0x00000028,0x0004003d,0x00000006,0x0000002a,0x0000000a,0x00050041,0x00000026,
0x0000002c,0x00000023,0x0000002b,0x0004003d,0x00000006,0x0000002d,0x0000002c,0x00050084,
0x00000006,0x0000002e,0x0000002a,0x0000002d,0x00050080,0x00000006,0x0000002f,0x00000029,
0x0000002e,0x00050041,0x00000026,0x00000031,0x00000023,0x00000030,0x0004003d,0x00000006,
0x00000032,0x00000031,0x00050080,0x00000006,0x00000033,0x0000002f,0x00000032,0x000200fe,
0x00000033,0x00010038,0x00050036,0x0000000d,0x00000010,0x00000000,0x0000000e,0x00030037,
0x00000007,0x0000000f,0x000200f8,0x00000011,0x0004003b,0x00000007,0x00000036,0x00000007,
0x0004003b,0x00000007,0x0000003c,0x00000007,0x0004003b,0x00000007,0x0000004b,0x00000007,
0x0004003b,0x00000007,0x0000004c,0x00000007,0x0004003b,0x00000007,0x0000004e,0x00000007,
0x0004003b,0x00000007,0x00000051,0x00000007,0x0004003b,0x00000007,0x0000005d,0x00000007,
0x0004003b,0x00000007,0x00000064,0x00000007,0x0004003b,0x00000007,0x00000067,0x00000007,
0x0004003b,0x00000007,0x00000073,0x00000007,0x0004003b,0x00000007,0x0000007a,0x00000007,
0x0004003b,0x00000085,0x00000086,0x00000007,0x0004003b,0x00000007,0x00000090,0x00000007,
0x0004003b,0x00000092,0x00000093,0x00000007,0x0004003b,0x00000092,0x0000009f,0x00000007,
0x0004003b,0x00000012,0x000000a2,0x00000007,0x0004003d,0x00000006,0x00000037,0x0000000f,
0x00050041,0x00000026,0x00000039,0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003a,
0x00000039,0x00050086,0x00000006,0x0000003b,0x00000037,0x0000003a,0x0003003e,0x00000036,
0x0000003b,0x0004003d,0x00000006,0x0000003d,0x0000000f,0x00050041,0x00000026,0x0000003e,
0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003f,0x0000003e,0x00050089,0x00000006,
0x00000040,0x0000003d,0x0000003f,0x0003003e,0x0000003c,0x00000040,0x0004003d,0x00000006,
0x00000041,0x0000003c,0x00050041,0x00000026,0x00000043,0x00000023,0x00000042,0x0004003d,
0x00000006,0x00000044,0x00000043,0x000500ae,0x00000045,0x00000046,0x00000041,0x00000044,
0x000300f7,0x00000048,0x00000000,0x000400fa,0x00000046,0x00000047,0x00000048,0x000200f8,
0x00000047,0x000200fe,0x00000049,0x000200f8,0x00000048,0x0004003d,0x00000006,0x0000004d,
0x00000036,0x0003003e,0x0000004c,0x0000004d,0x0004003d,0x00000006,0x0000004f,0x0000003c,
0x0003003e,0x0000004e,0x0000004f,0x00060039,0x00000006,0x00000050,0x0000000b,0x0000004c,
0x0000004e,0x0003003e,0x0000004b,0x00000050,0x0004003d,0x00000006,0x00000057,0x0000004b,
0x00050086,0x00000006,0x00000059,0x00000057,0x00000058,0x00060041,0x0000005a,0x0000005b,
0x00000055,0x00000056,0x00000059,0x0004003d,0x00000006,0x0000005c,0x0000005b,0x0003003e,
0x00000051,0x0000005c,0x0004003d,0x00000006,0x0000005e,0x0000003c,0x000500aa,0x00000045,
0x00000060,0x0000005e,0x0000005f,0x000600a9,0x00000024,0x00000062,0x00000060,0x00000030,
0x00000061,0x0004007c,0x00000006,0x00000063,0x00000062,0x0003003e,0x0000005d,0x00000063,
0x0004003d,0x00000006,0x00000065,0x0000003c,0x000500aa,0x00000045,0x00000066,0x00000065,
0x0000005f,0x000300f7,0x00000069,0x00000000,0x000400fa,0x00000066,0x00000068,0x0000006b,
0x000200f8,0x00000068,0x0003003e,0x00000067,0x0000006a,0x000200f9,0x00000069,0x000200f8,
0x0000006b,0x0004003d,0x00000006,0x0000006c,0x0000005d,0x0004003d,0x00000006,0x0000006e,
0x0000003c,0x00050082,0x00000006,0x0000006f,0x0000006d,0x0000006e,0x00050084,0x00000006,
0x00000070,0x0000006c,0x0000006f,0x00050080,0x00000006,0x00000071,0x00000070,0x0000006d,
0x0003003e,0x00000067,0x00000071,0x000200f9,0x00000069,0x000200f8,0x00000069,0x0004003d,
0x00000006,0x00000072,0x00000067,0x0003003e,0x00000064,0x00000072,0x0004003d,0x00000006,
0x00000074,0x0000003c,0x000500aa,0x00000045,0x00000075,0x00000074,0x0000005f,0x000600a9,
0x00000024,0x00000078,0x00000075,0x00000076,0x00000077,0x0004007c,0x00000006,0x00000079,
0x00000078,0x0003003e,0x00000073,0x00000079,0x0004003d,0x00000006,0x0000007b,0x00000051,
0x0004003d,0x00000006,0x0000007c,0x00000064,0x000500c2,0x00000006,0x0000007d,0x0000007b,
0x0000007c,0x0004003d,0x00000006,0x0000007e,0x00000073,0x000500c7,0x00000006,0x0000007f,
0x0000007d,0x0000007e,0x0003003e,0x0000007a,0x0000007f,0x0004003d,0x00000006,0x00000080,
0x0000005d,0x000500b0,0x00000045,0x00000082,0x00000080,0x00000081,0x000300f7,0x00000084,
0x00000000,0x000400fa,0x00000082,0x00000083,0x00000084,0x000200f8,0x00000083,0x0004003d,
0x00000006,0x00000087,0x0000007a,0x0004003d,0x00000006,0x00000089,0x0000005d,0x00050082,
0x00000006,0x0000008b,0x00000089,0x0000008a,0x000500c4,0x00000024,0x0000008c,0x00000088,
0x0000008b,0x0004007c,0x00000006,0x0000008d,0x0000008c,0x000500c7,0x00000006,0x0000008e,
0x00000087,0x0000008d,0x000500ab,0x00000045,0x0000008f,0x0000008e,0x0000006a,0x0003003e,
0x00000086,0x0000008f,0x0004003d,0x00000045,0x00000091,0x00000086,0x000300f7,0x00000095,
0x00000000,0x000400fa,0x00000091,0x00000094,0x00000099,0x000200f8,0x00000094,0x0004003d,
0x00000006,0x00000097,0x0000005d,0x000500c4,0x00000024,0x00000098,0x00000096,0x00000097,
0x0003003e,0x00000093,0x00000098,0x000200f9,0x00000095,0x000200f8,0x00000099,0x0003003e,
0x00000093,0x00000056,0x000200f9,0x00000095,0x000200f8,0x00000095,0x0004003d,0x00000024,
0x0000009a,0x00000093,0x0004007c,0x00000006,0x0000009b,0x0000009a,0x0003003e,0x00000090,
0x0000009b,0x0004003d,0x00000006,0x0000009c,0x00000090,0x0004003d,0x00000006,0x0000009d,
0x0000007a,0x000500c5,0x00000006,0x0000009e,0x0000009d,0x0000009c,0x0003003e,0x0000007a,
0x0000009e,0x000200f9,0x00000084,0x000200f8,0x00000084,0x0004003d,0x00000006,0x000000a0,
0x0000007a,0x0004007c,0x00000024,0x000000a1,0x000000a0,0x0003003e,0x0000009f,0x000000a1,
0x0004003d,0x00000024,0x000000a3,0x0000009f,0x0004006f,0x0000000d,0x000000a4,0x000000a3,
0x0004003d,0x00000006,0x000000a5,0x00000073,0x000500c2,0x00000006,0x000000a6,0x000000a5,
0x00000088,0x00040070,0x0000000d,0x000000a7,0x000000a6,0x00050088,0x0000000d,0x000000a8,
0x000000a4,0x000000a7,0x0003003e,0x000000a2,0x000000a8,0x0004003d,0x0000000d,0x000000a9,
0x000000a2,0x0007000c,0x0000000d,0x000000ab,0x00000001,0x00000028,0x000000a9,0x000000aa,
0x0003003e,0x000000a2,0x000000ab,0x0004003d,0x0000000d,0x000000ac,0x000000a2,0x000200fe,
0x000000ac,0x00010038,0x00050036,0x0000000d,0x00000015,0x00000000,0x00000013,0x00030037,
0x00000012,0x00000014,0x000200f8,0x00000016,0x0004003d,0x0000000d,0x000000af,0x00000014,
0x000200fe,0x000000af,0x00010038,0x00050036,0x00000006,0x0000001a,0x00000000,0x00000017,
0x00030037,0x00000007,0x00000018,0x00030037,0x00000012,0x00000019,0x000200f8,0x0000001b,
0x0004003b,0x00000007,0x000000b2,0x00000007,0x0004003d,0x0000000d,0x000000b3,0x00000019,
0x0004007c,0x00000024,0x000000b4,0x000000b3,0x0004007c,0x00000006,0x000000b5,0x000000b4,
0x0003003e,0x000000b2,0x000000b5,0x0004003d,0x00000006,0x000000b6,0x000000b2,0x000200fe,
0x000000b6,0x00010038,0x00050036,0x00000002,0x0000001e,0x00000000,0x0000001c,0x00030037,
0x00000007,0x0000001d,0x000200f8,0x0000001f,0x00050041,0x000000c0,0x000000c1,0x000000bf,
0x0000006a,0x0004003d,0x00000006,0x000000c2,0x000000c1,0x00050041,0x00000026,0x000000c3,
0x00000023,0x00000076,0x0004003d,0x00000006,0x000000c4,0x000000c3,0x00050086,0x00000006,
0x000000c5,0x000000c4,0x00000058,0x00050080,0x00000006,0x000000c6,0x000000c2,0x000000c5,
0x0004003d,0x00000006,0x000000c7,0x0000001d,0x00060041,0x0000005a,0x000000c8,0x000000bc,
0x00000056,0x000000c6,0x0003003e,0x000000c8,0x000000c7,0x000100fd,0x00010038
};
// Generated from:
......@@ -286,7 +286,8 @@ const uint32_t kConvertVertex_comp_0000001E[] = {
// valueAsUint |= signExtension;
// }
// int valueAsInt = int(valueAsUint);
// float value =(2 * float(valueAsInt)+ 1)/ valueMask;
// float value = float(valueAsInt)/(valueMask >> 1);
// value = max(value, float(- 1));
//
// return value;
// }
......
......@@ -76,122 +76,123 @@ const uint32_t kConvertVertex_comp_0000001F[] = {
0x00000024,0x00000077,0x000003ff,0x0004002b,0x00000006,0x00000081,0x00000020,0x00040020,
0x00000085,0x00000007,0x00000045,0x0004002b,0x00000024,0x00000088,0x00000001,0x0004002b,
0x00000006,0x0000008a,0x00000001,0x00040020,0x00000092,0x00000007,0x00000024,0x0004002b,
0x00000024,0x00000096,0xffffffff,0x0004002b,0x0000000d,0x000000a3,0x40000000,0x0004002b,
0x0000000d,0x000000a7,0x3f800000,0x0003001d,0x000000b9,0x00000006,0x0003001e,0x000000ba,
0x000000b9,0x00040020,0x000000bb,0x00000002,0x000000ba,0x0004003b,0x000000bb,0x000000bc,
0x00000002,0x00040017,0x000000bd,0x00000006,0x00000003,0x00040020,0x000000be,0x00000001,
0x000000bd,0x0004003b,0x000000be,0x000000bf,0x00000001,0x00040020,0x000000c0,0x00000001,
0x00000006,0x0004002b,0x00000006,0x000000ec,0x00000040,0x0006002c,0x000000bd,0x000000ed,
0x000000ec,0x0000008a,0x0000008a,0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,
0x000200f8,0x00000005,0x0004003b,0x00000007,0x000000c9,0x00000007,0x0004003b,0x00000007,
0x000000ca,0x00000007,0x0004003b,0x00000007,0x000000d2,0x00000007,0x0004003b,0x00000012,
0x000000d8,0x00000007,0x0004003b,0x00000007,0x000000d9,0x00000007,0x0004003b,0x00000012,
0x000000dc,0x00000007,0x0004003b,0x00000012,0x000000dd,0x00000007,0x0004003b,0x00000007,
0x000000e0,0x00000007,0x0004003b,0x00000012,0x000000e2,0x00000007,0x0004003b,0x00000007,
0x000000e9,0x00000007,0x0003003e,0x000000c9,0x0000006a,0x0003003e,0x000000ca,0x0000006a,
0x000200f9,0x000000cb,0x000200f8,0x000000cb,0x000400f6,0x000000cd,0x000000ce,0x00000000,
0x000200f9,0x000000cf,0x000200f8,0x000000cf,0x0004003d,0x00000006,0x000000d0,0x000000ca,
0x000500b0,0x00000045,0x000000d1,0x000000d0,0x0000008a,0x000400fa,0x000000d1,0x000000cc,
0x000000cd,0x000200f8,0x000000cc,0x00050041,0x000000c0,0x000000d3,0x000000bf,0x0000006a,
0x0004003d,0x00000006,0x000000d4,0x000000d3,0x00050084,0x00000006,0x000000d5,0x000000d4,
0x0000008a,0x0004003d,0x00000006,0x000000d6,0x000000ca,0x00050080,0x00000006,0x000000d7,
0x000000d5,0x000000d6,0x0003003e,0x000000d2,0x000000d7,0x0004003d,0x00000006,0x000000da,
0x000000d2,0x0003003e,0x000000d9,0x000000da,0x00050039,0x0000000d,0x000000db,0x00000010,
0x000000d9,0x0003003e,0x000000d8,0x000000db,0x0004003d,0x0000000d,0x000000de,0x000000d8,
0x0003003e,0x000000dd,0x000000de,0x00050039,0x0000000d,0x000000df,0x00000015,0x000000dd,
0x0003003e,0x000000dc,0x000000df,0x0004003d,0x00000006,0x000000e1,0x000000d2,0x0003003e,
0x000000e0,0x000000e1,0x0004003d,0x0000000d,0x000000e3,0x000000dc,0x0003003e,0x000000e2,
0x000000e3,0x00060039,0x00000006,0x000000e4,0x0000001a,0x000000e0,0x000000e2,0x0004003d,
0x00000006,0x000000e5,0x000000c9,0x000500c5,0x00000006,0x000000e6,0x000000e5,0x000000e4,
0x0003003e,0x000000c9,0x000000e6,0x000200f9,0x000000ce,0x000200f8,0x000000ce,0x0004003d,
0x00000006,0x000000e7,0x000000ca,0x00050080,0x00000006,0x000000e8,0x000000e7,0x00000088,
0x0003003e,0x000000ca,0x000000e8,0x000200f9,0x000000cb,0x000200f8,0x000000cd,0x0004003d,
0x00000006,0x000000ea,0x000000c9,0x0003003e,0x000000e9,0x000000ea,0x00050039,0x00000002,
0x000000eb,0x0000001e,0x000000e9,0x000100fd,0x00010038,0x00050036,0x00000006,0x0000000b,
0x00000000,0x00000008,0x00030037,0x00000007,0x00000009,0x00030037,0x00000007,0x0000000a,
0x000200f8,0x0000000c,0x0004003d,0x00000006,0x00000020,0x00000009,0x00050041,0x00000026,
0x00000027,0x00000023,0x00000025,0x0004003d,0x00000006,0x00000028,0x00000027,0x00050084,
0x00000006,0x00000029,0x00000020,0x00000028,0x0004003d,0x00000006,0x0000002a,0x0000000a,
0x00050041,0x00000026,0x0000002c,0x00000023,0x0000002b,0x0004003d,0x00000006,0x0000002d,
0x0000002c,0x00050084,0x00000006,0x0000002e,0x0000002a,0x0000002d,0x00050080,0x00000006,
0x0000002f,0x00000029,0x0000002e,0x00050041,0x00000026,0x00000031,0x00000023,0x00000030,
0x0004003d,0x00000006,0x00000032,0x00000031,0x00050080,0x00000006,0x00000033,0x0000002f,
0x00000032,0x000200fe,0x00000033,0x00010038,0x00050036,0x0000000d,0x00000010,0x00000000,
0x0000000e,0x00030037,0x00000007,0x0000000f,0x000200f8,0x00000011,0x0004003b,0x00000007,
0x00000036,0x00000007,0x0004003b,0x00000007,0x0000003c,0x00000007,0x0004003b,0x00000007,
0x0000004b,0x00000007,0x0004003b,0x00000007,0x0000004c,0x00000007,0x0004003b,0x00000007,
0x0000004e,0x00000007,0x0004003b,0x00000007,0x00000051,0x00000007,0x0004003b,0x00000007,
0x0000005d,0x00000007,0x0004003b,0x00000007,0x00000064,0x00000007,0x0004003b,0x00000007,
0x00000067,0x00000007,0x0004003b,0x00000007,0x00000073,0x00000007,0x0004003b,0x00000007,
0x0000007a,0x00000007,0x0004003b,0x00000085,0x00000086,0x00000007,0x0004003b,0x00000007,
0x00000090,0x00000007,0x0004003b,0x00000092,0x00000093,0x00000007,0x0004003b,0x00000092,
0x0000009f,0x00000007,0x0004003b,0x00000012,0x000000a2,0x00000007,0x0004003d,0x00000006,
0x00000037,0x0000000f,0x00050041,0x00000026,0x00000039,0x00000023,0x00000038,0x0004003d,
0x00000006,0x0000003a,0x00000039,0x00050086,0x00000006,0x0000003b,0x00000037,0x0000003a,
0x0003003e,0x00000036,0x0000003b,0x0004003d,0x00000006,0x0000003d,0x0000000f,0x00050041,
0x00000026,0x0000003e,0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003f,0x0000003e,
0x00050089,0x00000006,0x00000040,0x0000003d,0x0000003f,0x0003003e,0x0000003c,0x00000040,
0x0004003d,0x00000006,0x00000041,0x0000003c,0x00050041,0x00000026,0x00000043,0x00000023,
0x00000042,0x0004003d,0x00000006,0x00000044,0x00000043,0x000500ae,0x00000045,0x00000046,
0x00000041,0x00000044,0x000300f7,0x00000048,0x00000000,0x000400fa,0x00000046,0x00000047,
0x00000048,0x000200f8,0x00000047,0x000200fe,0x00000049,0x000200f8,0x00000048,0x0004003d,
0x00000006,0x0000004d,0x00000036,0x0003003e,0x0000004c,0x0000004d,0x0004003d,0x00000006,
0x0000004f,0x0000003c,0x0003003e,0x0000004e,0x0000004f,0x00060039,0x00000006,0x00000050,
0x0000000b,0x0000004c,0x0000004e,0x0003003e,0x0000004b,0x00000050,0x0004003d,0x00000006,
0x00000057,0x0000004b,0x00050086,0x00000006,0x00000059,0x00000057,0x00000058,0x00060041,
0x0000005a,0x0000005b,0x00000055,0x00000056,0x00000059,0x0004003d,0x00000006,0x0000005c,
0x0000005b,0x0003003e,0x00000051,0x0000005c,0x0004003d,0x00000006,0x0000005e,0x0000003c,
0x000500aa,0x00000045,0x00000060,0x0000005e,0x0000005f,0x000600a9,0x00000024,0x00000062,
0x00000060,0x00000030,0x00000061,0x0004007c,0x00000006,0x00000063,0x00000062,0x0003003e,
0x0000005d,0x00000063,0x0004003d,0x00000006,0x00000065,0x0000003c,0x000500aa,0x00000045,
0x00000066,0x00000065,0x0000005f,0x000300f7,0x00000069,0x00000000,0x000400fa,0x00000066,
0x00000068,0x0000006b,0x000200f8,0x00000068,0x0003003e,0x00000067,0x0000006a,0x000200f9,
0x00000069,0x000200f8,0x0000006b,0x0004003d,0x00000006,0x0000006c,0x0000005d,0x0004003d,
0x00000006,0x0000006e,0x0000003c,0x00050082,0x00000006,0x0000006f,0x0000006d,0x0000006e,
0x00050084,0x00000006,0x00000070,0x0000006c,0x0000006f,0x00050080,0x00000006,0x00000071,
0x00000070,0x0000006d,0x0003003e,0x00000067,0x00000071,0x000200f9,0x00000069,0x000200f8,
0x00000069,0x0004003d,0x00000006,0x00000072,0x00000067,0x0003003e,0x00000064,0x00000072,
0x0004003d,0x00000006,0x00000074,0x0000003c,0x000500aa,0x00000045,0x00000075,0x00000074,
0x0000005f,0x000600a9,0x00000024,0x00000078,0x00000075,0x00000076,0x00000077,0x0004007c,
0x00000006,0x00000079,0x00000078,0x0003003e,0x00000073,0x00000079,0x0004003d,0x00000006,
0x0000007b,0x00000051,0x0004003d,0x00000006,0x0000007c,0x00000064,0x000500c2,0x00000006,
0x0000007d,0x0000007b,0x0000007c,0x0004003d,0x00000006,0x0000007e,0x00000073,0x000500c7,
0x00000006,0x0000007f,0x0000007d,0x0000007e,0x0003003e,0x0000007a,0x0000007f,0x0004003d,
0x00000006,0x00000080,0x0000005d,0x000500b0,0x00000045,0x00000082,0x00000080,0x00000081,
0x000300f7,0x00000084,0x00000000,0x000400fa,0x00000082,0x00000083,0x00000084,0x000200f8,
0x00000083,0x0004003d,0x00000006,0x00000087,0x0000007a,0x0004003d,0x00000006,0x00000089,
0x0000005d,0x00050082,0x00000006,0x0000008b,0x00000089,0x0000008a,0x000500c4,0x00000024,
0x0000008c,0x00000088,0x0000008b,0x0004007c,0x00000006,0x0000008d,0x0000008c,0x000500c7,
0x00000006,0x0000008e,0x00000087,0x0000008d,0x000500ab,0x00000045,0x0000008f,0x0000008e,
0x0000006a,0x0003003e,0x00000086,0x0000008f,0x0004003d,0x00000045,0x00000091,0x00000086,
0x000300f7,0x00000095,0x00000000,0x000400fa,0x00000091,0x00000094,0x00000099,0x000200f8,
0x00000094,0x0004003d,0x00000006,0x00000097,0x0000005d,0x000500c4,0x00000024,0x00000098,
0x00000096,0x00000097,0x0003003e,0x00000093,0x00000098,0x000200f9,0x00000095,0x000200f8,
0x00000099,0x0003003e,0x00000093,0x00000056,0x000200f9,0x00000095,0x000200f8,0x00000095,
0x0004003d,0x00000024,0x0000009a,0x00000093,0x0004007c,0x00000006,0x0000009b,0x0000009a,
0x0003003e,0x00000090,0x0000009b,0x0004003d,0x00000006,0x0000009c,0x00000090,0x0004003d,
0x00000006,0x0000009d,0x0000007a,0x000500c5,0x00000006,0x0000009e,0x0000009d,0x0000009c,
0x0003003e,0x0000007a,0x0000009e,0x000200f9,0x00000084,0x000200f8,0x00000084,0x0004003d,
0x00000006,0x000000a0,0x0000007a,0x0004007c,0x00000024,0x000000a1,0x000000a0,0x0003003e,
0x0000009f,0x000000a1,0x0004003d,0x00000024,0x000000a4,0x0000009f,0x0004006f,0x0000000d,
0x000000a5,0x000000a4,0x00050085,0x0000000d,0x000000a6,0x000000a3,0x000000a5,0x00050081,
0x0000000d,0x000000a8,0x000000a6,0x000000a7,0x0004003d,0x00000006,0x000000a9,0x00000073,
0x00040070,0x0000000d,0x000000aa,0x000000a9,0x00050088,0x0000000d,0x000000ab,0x000000a8,
0x000000aa,0x0003003e,0x000000a2,0x000000ab,0x0004003d,0x0000000d,0x000000ac,0x000000a2,
0x000200fe,0x000000ac,0x00010038,0x00050036,0x0000000d,0x00000015,0x00000000,0x00000013,
0x00030037,0x00000012,0x00000014,0x000200f8,0x00000016,0x0004003d,0x0000000d,0x000000af,
0x00000014,0x000200fe,0x000000af,0x00010038,0x00050036,0x00000006,0x0000001a,0x00000000,
0x00000017,0x00030037,0x00000007,0x00000018,0x00030037,0x00000012,0x00000019,0x000200f8,
0x0000001b,0x0004003b,0x00000007,0x000000b2,0x00000007,0x0004003d,0x0000000d,0x000000b3,
0x00000019,0x0004007c,0x00000024,0x000000b4,0x000000b3,0x0004007c,0x00000006,0x000000b5,
0x000000b4,0x0003003e,0x000000b2,0x000000b5,0x0004003d,0x00000006,0x000000b6,0x000000b2,
0x000200fe,0x000000b6,0x00010038,0x00050036,0x00000002,0x0000001e,0x00000000,0x0000001c,
0x00030037,0x00000007,0x0000001d,0x000200f8,0x0000001f,0x00050041,0x000000c0,0x000000c1,
0x000000bf,0x0000006a,0x0004003d,0x00000006,0x000000c2,0x000000c1,0x00050041,0x00000026,
0x000000c3,0x00000023,0x00000076,0x0004003d,0x00000006,0x000000c4,0x000000c3,0x00050086,
0x00000006,0x000000c5,0x000000c4,0x00000058,0x00050080,0x00000006,0x000000c6,0x000000c2,
0x000000c5,0x0004003d,0x00000006,0x000000c7,0x0000001d,0x00060041,0x0000005a,0x000000c8,
0x000000bc,0x00000056,0x000000c6,0x0003003e,0x000000c8,0x000000c7,0x000100fd,0x00010038
0x00000024,0x00000096,0xffffffff,0x0004002b,0x0000000d,0x000000aa,0xbf800000,0x0003001d,
0x000000b9,0x00000006,0x0003001e,0x000000ba,0x000000b9,0x00040020,0x000000bb,0x00000002,
0x000000ba,0x0004003b,0x000000bb,0x000000bc,0x00000002,0x00040017,0x000000bd,0x00000006,
0x00000003,0x00040020,0x000000be,0x00000001,0x000000bd,0x0004003b,0x000000be,0x000000bf,
0x00000001,0x00040020,0x000000c0,0x00000001,0x00000006,0x0004002b,0x00000006,0x000000ec,
0x00000040,0x0006002c,0x000000bd,0x000000ed,0x000000ec,0x0000008a,0x0000008a,0x00050036,
0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,0x0004003b,0x00000007,
0x000000c9,0x00000007,0x0004003b,0x00000007,0x000000ca,0x00000007,0x0004003b,0x00000007,
0x000000d2,0x00000007,0x0004003b,0x00000012,0x000000d8,0x00000007,0x0004003b,0x00000007,
0x000000d9,0x00000007,0x0004003b,0x00000012,0x000000dc,0x00000007,0x0004003b,0x00000012,
0x000000dd,0x00000007,0x0004003b,0x00000007,0x000000e0,0x00000007,0x0004003b,0x00000012,
0x000000e2,0x00000007,0x0004003b,0x00000007,0x000000e9,0x00000007,0x0003003e,0x000000c9,
0x0000006a,0x0003003e,0x000000ca,0x0000006a,0x000200f9,0x000000cb,0x000200f8,0x000000cb,
0x000400f6,0x000000cd,0x000000ce,0x00000000,0x000200f9,0x000000cf,0x000200f8,0x000000cf,
0x0004003d,0x00000006,0x000000d0,0x000000ca,0x000500b0,0x00000045,0x000000d1,0x000000d0,
0x0000008a,0x000400fa,0x000000d1,0x000000cc,0x000000cd,0x000200f8,0x000000cc,0x00050041,
0x000000c0,0x000000d3,0x000000bf,0x0000006a,0x0004003d,0x00000006,0x000000d4,0x000000d3,
0x00050084,0x00000006,0x000000d5,0x000000d4,0x0000008a,0x0004003d,0x00000006,0x000000d6,
0x000000ca,0x00050080,0x00000006,0x000000d7,0x000000d5,0x000000d6,0x0003003e,0x000000d2,
0x000000d7,0x0004003d,0x00000006,0x000000da,0x000000d2,0x0003003e,0x000000d9,0x000000da,
0x00050039,0x0000000d,0x000000db,0x00000010,0x000000d9,0x0003003e,0x000000d8,0x000000db,
0x0004003d,0x0000000d,0x000000de,0x000000d8,0x0003003e,0x000000dd,0x000000de,0x00050039,
0x0000000d,0x000000df,0x00000015,0x000000dd,0x0003003e,0x000000dc,0x000000df,0x0004003d,
0x00000006,0x000000e1,0x000000d2,0x0003003e,0x000000e0,0x000000e1,0x0004003d,0x0000000d,
0x000000e3,0x000000dc,0x0003003e,0x000000e2,0x000000e3,0x00060039,0x00000006,0x000000e4,
0x0000001a,0x000000e0,0x000000e2,0x0004003d,0x00000006,0x000000e5,0x000000c9,0x000500c5,
0x00000006,0x000000e6,0x000000e5,0x000000e4,0x0003003e,0x000000c9,0x000000e6,0x000200f9,
0x000000ce,0x000200f8,0x000000ce,0x0004003d,0x00000006,0x000000e7,0x000000ca,0x00050080,
0x00000006,0x000000e8,0x000000e7,0x00000088,0x0003003e,0x000000ca,0x000000e8,0x000200f9,
0x000000cb,0x000200f8,0x000000cd,0x0004003d,0x00000006,0x000000ea,0x000000c9,0x0003003e,
0x000000e9,0x000000ea,0x00050039,0x00000002,0x000000eb,0x0000001e,0x000000e9,0x000100fd,
0x00010038,0x00050036,0x00000006,0x0000000b,0x00000000,0x00000008,0x00030037,0x00000007,
0x00000009,0x00030037,0x00000007,0x0000000a,0x000200f8,0x0000000c,0x0004003d,0x00000006,
0x00000020,0x00000009,0x00050041,0x00000026,0x00000027,0x00000023,0x00000025,0x0004003d,
0x00000006,0x00000028,0x00000027,0x00050084,0x00000006,0x00000029,0x00000020,0x00000028,
0x0004003d,0x00000006,0x0000002a,0x0000000a,0x00050041,0x00000026,0x0000002c,0x00000023,
0x0000002b,0x0004003d,0x00000006,0x0000002d,0x0000002c,0x00050084,0x00000006,0x0000002e,
0x0000002a,0x0000002d,0x00050080,0x00000006,0x0000002f,0x00000029,0x0000002e,0x00050041,
0x00000026,0x00000031,0x00000023,0x00000030,0x0004003d,0x00000006,0x00000032,0x00000031,
0x00050080,0x00000006,0x00000033,0x0000002f,0x00000032,0x000200fe,0x00000033,0x00010038,
0x00050036,0x0000000d,0x00000010,0x00000000,0x0000000e,0x00030037,0x00000007,0x0000000f,
0x000200f8,0x00000011,0x0004003b,0x00000007,0x00000036,0x00000007,0x0004003b,0x00000007,
0x0000003c,0x00000007,0x0004003b,0x00000007,0x0000004b,0x00000007,0x0004003b,0x00000007,
0x0000004c,0x00000007,0x0004003b,0x00000007,0x0000004e,0x00000007,0x0004003b,0x00000007,
0x00000051,0x00000007,0x0004003b,0x00000007,0x0000005d,0x00000007,0x0004003b,0x00000007,
0x00000064,0x00000007,0x0004003b,0x00000007,0x00000067,0x00000007,0x0004003b,0x00000007,
0x00000073,0x00000007,0x0004003b,0x00000007,0x0000007a,0x00000007,0x0004003b,0x00000085,
0x00000086,0x00000007,0x0004003b,0x00000007,0x00000090,0x00000007,0x0004003b,0x00000092,
0x00000093,0x00000007,0x0004003b,0x00000092,0x0000009f,0x00000007,0x0004003b,0x00000012,
0x000000a2,0x00000007,0x0004003d,0x00000006,0x00000037,0x0000000f,0x00050041,0x00000026,
0x00000039,0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003a,0x00000039,0x00050086,
0x00000006,0x0000003b,0x00000037,0x0000003a,0x0003003e,0x00000036,0x0000003b,0x0004003d,
0x00000006,0x0000003d,0x0000000f,0x00050041,0x00000026,0x0000003e,0x00000023,0x00000038,
0x0004003d,0x00000006,0x0000003f,0x0000003e,0x00050089,0x00000006,0x00000040,0x0000003d,
0x0000003f,0x0003003e,0x0000003c,0x00000040,0x0004003d,0x00000006,0x00000041,0x0000003c,
0x00050041,0x00000026,0x00000043,0x00000023,0x00000042,0x0004003d,0x00000006,0x00000044,
0x00000043,0x000500ae,0x00000045,0x00000046,0x00000041,0x00000044,0x000300f7,0x00000048,
0x00000000,0x000400fa,0x00000046,0x00000047,0x00000048,0x000200f8,0x00000047,0x000200fe,
0x00000049,0x000200f8,0x00000048,0x0004003d,0x00000006,0x0000004d,0x00000036,0x0003003e,
0x0000004c,0x0000004d,0x0004003d,0x00000006,0x0000004f,0x0000003c,0x0003003e,0x0000004e,
0x0000004f,0x00060039,0x00000006,0x00000050,0x0000000b,0x0000004c,0x0000004e,0x0003003e,
0x0000004b,0x00000050,0x0004003d,0x00000006,0x00000057,0x0000004b,0x00050086,0x00000006,
0x00000059,0x00000057,0x00000058,0x00060041,0x0000005a,0x0000005b,0x00000055,0x00000056,
0x00000059,0x0004003d,0x00000006,0x0000005c,0x0000005b,0x0003003e,0x00000051,0x0000005c,
0x0004003d,0x00000006,0x0000005e,0x0000003c,0x000500aa,0x00000045,0x00000060,0x0000005e,
0x0000005f,0x000600a9,0x00000024,0x00000062,0x00000060,0x00000030,0x00000061,0x0004007c,
0x00000006,0x00000063,0x00000062,0x0003003e,0x0000005d,0x00000063,0x0004003d,0x00000006,
0x00000065,0x0000003c,0x000500aa,0x00000045,0x00000066,0x00000065,0x0000005f,0x000300f7,
0x00000069,0x00000000,0x000400fa,0x00000066,0x00000068,0x0000006b,0x000200f8,0x00000068,
0x0003003e,0x00000067,0x0000006a,0x000200f9,0x00000069,0x000200f8,0x0000006b,0x0004003d,
0x00000006,0x0000006c,0x0000005d,0x0004003d,0x00000006,0x0000006e,0x0000003c,0x00050082,
0x00000006,0x0000006f,0x0000006d,0x0000006e,0x00050084,0x00000006,0x00000070,0x0000006c,
0x0000006f,0x00050080,0x00000006,0x00000071,0x00000070,0x0000006d,0x0003003e,0x00000067,
0x00000071,0x000200f9,0x00000069,0x000200f8,0x00000069,0x0004003d,0x00000006,0x00000072,
0x00000067,0x0003003e,0x00000064,0x00000072,0x0004003d,0x00000006,0x00000074,0x0000003c,
0x000500aa,0x00000045,0x00000075,0x00000074,0x0000005f,0x000600a9,0x00000024,0x00000078,
0x00000075,0x00000076,0x00000077,0x0004007c,0x00000006,0x00000079,0x00000078,0x0003003e,
0x00000073,0x00000079,0x0004003d,0x00000006,0x0000007b,0x00000051,0x0004003d,0x00000006,
0x0000007c,0x00000064,0x000500c2,0x00000006,0x0000007d,0x0000007b,0x0000007c,0x0004003d,
0x00000006,0x0000007e,0x00000073,0x000500c7,0x00000006,0x0000007f,0x0000007d,0x0000007e,
0x0003003e,0x0000007a,0x0000007f,0x0004003d,0x00000006,0x00000080,0x0000005d,0x000500b0,
0x00000045,0x00000082,0x00000080,0x00000081,0x000300f7,0x00000084,0x00000000,0x000400fa,
0x00000082,0x00000083,0x00000084,0x000200f8,0x00000083,0x0004003d,0x00000006,0x00000087,
0x0000007a,0x0004003d,0x00000006,0x00000089,0x0000005d,0x00050082,0x00000006,0x0000008b,
0x00000089,0x0000008a,0x000500c4,0x00000024,0x0000008c,0x00000088,0x0000008b,0x0004007c,
0x00000006,0x0000008d,0x0000008c,0x000500c7,0x00000006,0x0000008e,0x00000087,0x0000008d,
0x000500ab,0x00000045,0x0000008f,0x0000008e,0x0000006a,0x0003003e,0x00000086,0x0000008f,
0x0004003d,0x00000045,0x00000091,0x00000086,0x000300f7,0x00000095,0x00000000,0x000400fa,
0x00000091,0x00000094,0x00000099,0x000200f8,0x00000094,0x0004003d,0x00000006,0x00000097,
0x0000005d,0x000500c4,0x00000024,0x00000098,0x00000096,0x00000097,0x0003003e,0x00000093,
0x00000098,0x000200f9,0x00000095,0x000200f8,0x00000099,0x0003003e,0x00000093,0x00000056,
0x000200f9,0x00000095,0x000200f8,0x00000095,0x0004003d,0x00000024,0x0000009a,0x00000093,
0x0004007c,0x00000006,0x0000009b,0x0000009a,0x0003003e,0x00000090,0x0000009b,0x0004003d,
0x00000006,0x0000009c,0x00000090,0x0004003d,0x00000006,0x0000009d,0x0000007a,0x000500c5,
0x00000006,0x0000009e,0x0000009d,0x0000009c,0x0003003e,0x0000007a,0x0000009e,0x000200f9,
0x00000084,0x000200f8,0x00000084,0x0004003d,0x00000006,0x000000a0,0x0000007a,0x0004007c,
0x00000024,0x000000a1,0x000000a0,0x0003003e,0x0000009f,0x000000a1,0x0004003d,0x00000024,
0x000000a3,0x0000009f,0x0004006f,0x0000000d,0x000000a4,0x000000a3,0x0004003d,0x00000006,
0x000000a5,0x00000073,0x000500c2,0x00000006,0x000000a6,0x000000a5,0x00000088,0x00040070,
0x0000000d,0x000000a7,0x000000a6,0x00050088,0x0000000d,0x000000a8,0x000000a4,0x000000a7,
0x0003003e,0x000000a2,0x000000a8,0x0004003d,0x0000000d,0x000000a9,0x000000a2,0x0007000c,
0x0000000d,0x000000ab,0x00000001,0x00000028,0x000000a9,0x000000aa,0x0003003e,0x000000a2,
0x000000ab,0x0004003d,0x0000000d,0x000000ac,0x000000a2,0x000200fe,0x000000ac,0x00010038,
0x00050036,0x0000000d,0x00000015,0x00000000,0x00000013,0x00030037,0x00000012,0x00000014,
0x000200f8,0x00000016,0x0004003d,0x0000000d,0x000000af,0x00000014,0x000200fe,0x000000af,
0x00010038,0x00050036,0x00000006,0x0000001a,0x00000000,0x00000017,0x00030037,0x00000007,
0x00000018,0x00030037,0x00000012,0x00000019,0x000200f8,0x0000001b,0x0004003b,0x00000007,
0x000000b2,0x00000007,0x0004003d,0x0000000d,0x000000b3,0x00000019,0x0004007c,0x00000024,
0x000000b4,0x000000b3,0x0004007c,0x00000006,0x000000b5,0x000000b4,0x0003003e,0x000000b2,
0x000000b5,0x0004003d,0x00000006,0x000000b6,0x000000b2,0x000200fe,0x000000b6,0x00010038,
0x00050036,0x00000002,0x0000001e,0x00000000,0x0000001c,0x00030037,0x00000007,0x0000001d,
0x000200f8,0x0000001f,0x00050041,0x000000c0,0x000000c1,0x000000bf,0x0000006a,0x0004003d,
0x00000006,0x000000c2,0x000000c1,0x00050041,0x00000026,0x000000c3,0x00000023,0x00000076,
0x0004003d,0x00000006,0x000000c4,0x000000c3,0x00050086,0x00000006,0x000000c5,0x000000c4,
0x00000058,0x00050080,0x00000006,0x000000c6,0x000000c2,0x000000c5,0x0004003d,0x00000006,
0x000000c7,0x0000001d,0x00060041,0x0000005a,0x000000c8,0x000000bc,0x00000056,0x000000c6,
0x0003003e,0x000000c8,0x000000c7,0x000100fd,0x00010038
};
// Generated from:
......@@ -277,7 +278,8 @@ const uint32_t kConvertVertex_comp_0000001F[] = {
// valueAsUint |= signExtension;
// }
// int valueAsInt = int(valueAsUint);
// float value =(2 * float(valueAsInt)+ 1)/ valueMask;
// float value = float(valueAsInt)/(valueMask >> 1);
// value = max(value, float(- 1));
//
// return value;
// }
......
......@@ -75,132 +75,132 @@ const uint32_t kConvertVertex_comp_00000026[] = {
0x00000024,0x0000006e,0x000003ff,0x0004002b,0x00000006,0x00000077,0x00000001,0x0004002b,
0x00000006,0x00000080,0x00000020,0x00040020,0x00000084,0x00000007,0x00000056,0x0004002b,
0x00000024,0x00000087,0x00000001,0x00040020,0x00000090,0x00000007,0x00000024,0x0004002b,
0x00000024,0x00000094,0xffffffff,0x0004002b,0x0000000d,0x000000a1,0x40000000,0x0004002b,
0x0000000d,0x000000a5,0x3f800000,0x0003001d,0x000000b7,0x00000006,0x0003001e,0x000000b8,
0x000000b7,0x00040020,0x000000b9,0x00000002,0x000000b8,0x0004003b,0x000000b9,0x000000ba,
0x00000002,0x00040017,0x000000bb,0x00000006,0x00000003,0x00040020,0x000000bc,0x00000001,
0x000000bb,0x0004003b,0x000000bc,0x000000bd,0x00000001,0x00040020,0x000000be,0x00000001,
0x00000006,0x0004002b,0x00000006,0x000000f9,0x00000040,0x0006002c,0x000000bb,0x000000fa,
0x000000f9,0x00000077,0x00000077,0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,
0x000200f8,0x00000005,0x0004003b,0x00000007,0x000000cf,0x00000007,0x0004003b,0x00000007,
0x000000d0,0x00000007,0x0004003b,0x00000007,0x000000d8,0x00000007,0x0004003b,0x00000012,
0x000000e5,0x00000007,0x0004003b,0x00000007,0x000000e6,0x00000007,0x0004003b,0x00000012,
0x000000e9,0x00000007,0x0004003b,0x00000012,0x000000ea,0x00000007,0x0004003b,0x00000007,
0x000000ed,0x00000007,0x0004003b,0x00000012,0x000000ef,0x00000007,0x0004003b,0x00000007,
0x000000f6,0x00000007,0x00050041,0x000000be,0x000000c7,0x000000bd,0x00000061,0x0004003d,
0x00000006,0x000000c8,0x000000c7,0x00050041,0x00000026,0x000000c9,0x00000023,0x0000004c,
0x0004003d,0x00000006,0x000000ca,0x000000c9,0x000500ae,0x00000056,0x000000cb,0x000000c8,
0x000000ca,0x000300f7,0x000000cd,0x00000000,0x000400fa,0x000000cb,0x000000cc,0x000000cd,
0x000200f8,0x000000cc,0x000100fd,0x000200f8,0x000000cd,0x0003003e,0x000000cf,0x00000061,
0x0003003e,0x000000d0,0x00000061,0x000200f9,0x000000d1,0x000200f8,0x000000d1,0x000400f6,
0x000000d3,0x000000d4,0x00000000,0x000200f9,0x000000d5,0x000200f8,0x000000d5,0x0004003d,
0x00000006,0x000000d6,0x000000d0,0x000500b0,0x00000056,0x000000d7,0x000000d6,0x00000077,
0x000400fa,0x000000d7,0x000000d2,0x000000d3,0x000200f8,0x000000d2,0x00050041,0x000000be,
0x000000d9,0x000000bd,0x00000061,0x0004003d,0x00000006,0x000000da,0x000000d9,0x00050084,
0x00000006,0x000000db,0x000000da,0x00000077,0x0004003d,0x00000006,0x000000dc,0x000000d0,
0x00050080,0x00000006,0x000000dd,0x000000db,0x000000dc,0x0003003e,0x000000d8,0x000000dd,
0x0004003d,0x00000006,0x000000de,0x000000d8,0x00050041,0x00000026,0x000000df,0x00000023,
0x00000087,0x0004003d,0x00000006,0x000000e0,0x000000df,0x000500ae,0x00000056,0x000000e1,
0x000000de,0x000000e0,0x000300f7,0x000000e3,0x00000000,0x000400fa,0x000000e1,0x000000e2,
0x000000e3,0x000200f8,0x000000e2,0x000200f9,0x000000d3,0x000200f8,0x000000e3,0x0004003d,
0x00000006,0x000000e7,0x000000d8,0x0003003e,0x000000e6,0x000000e7,0x00050039,0x0000000d,
0x000000e8,0x00000010,0x000000e6,0x0003003e,0x000000e5,0x000000e8,0x0004003d,0x0000000d,
0x000000eb,0x000000e5,0x0003003e,0x000000ea,0x000000eb,0x00050039,0x0000000d,0x000000ec,
0x00000015,0x000000ea,0x0003003e,0x000000e9,0x000000ec,0x0004003d,0x00000006,0x000000ee,
0x000000d8,0x0003003e,0x000000ed,0x000000ee,0x0004003d,0x0000000d,0x000000f0,0x000000e9,
0x0003003e,0x000000ef,0x000000f0,0x00060039,0x00000006,0x000000f1,0x0000001a,0x000000ed,
0x000000ef,0x0004003d,0x00000006,0x000000f2,0x000000cf,0x000500c5,0x00000006,0x000000f3,
0x000000f2,0x000000f1,0x0003003e,0x000000cf,0x000000f3,0x000200f9,0x000000d4,0x000200f8,
0x000000d4,0x0004003d,0x00000006,0x000000f4,0x000000d0,0x00050080,0x00000006,0x000000f5,
0x000000f4,0x00000087,0x0003003e,0x000000d0,0x000000f5,0x000200f9,0x000000d1,0x000200f8,
0x000000d3,0x0004003d,0x00000006,0x000000f7,0x000000cf,0x0003003e,0x000000f6,0x000000f7,
0x00050039,0x00000002,0x000000f8,0x0000001e,0x000000f6,0x000100fd,0x00010038,0x00050036,
0x00000006,0x0000000b,0x00000000,0x00000008,0x00030037,0x00000007,0x00000009,0x00030037,
0x00000007,0x0000000a,0x000200f8,0x0000000c,0x0004003d,0x00000006,0x00000020,0x00000009,
0x00050041,0x00000026,0x00000027,0x00000023,0x00000025,0x0004003d,0x00000006,0x00000028,
0x00000027,0x00050084,0x00000006,0x00000029,0x00000020,0x00000028,0x0004003d,0x00000006,
0x0000002a,0x0000000a,0x00050041,0x00000026,0x0000002c,0x00000023,0x0000002b,0x0004003d,
0x00000006,0x0000002d,0x0000002c,0x00050084,0x00000006,0x0000002e,0x0000002a,0x0000002d,
0x00050080,0x00000006,0x0000002f,0x00000029,0x0000002e,0x00050041,0x00000026,0x00000031,
0x00000023,0x00000030,0x0004003d,0x00000006,0x00000032,0x00000031,0x00050080,0x00000006,
0x00000033,0x0000002f,0x00000032,0x000200fe,0x00000033,0x00010038,0x00050036,0x0000000d,
0x00000010,0x00000000,0x0000000e,0x00030037,0x00000007,0x0000000f,0x000200f8,0x00000011,
0x0004003b,0x00000007,0x00000036,0x00000007,0x0004003b,0x00000007,0x0000003c,0x00000007,
0x0004003b,0x00000007,0x00000041,0x00000007,0x0004003b,0x00000007,0x00000042,0x00000007,
0x0004003b,0x00000007,0x00000044,0x00000007,0x0004003b,0x00000007,0x00000047,0x00000007,
0x0004003b,0x00000007,0x00000053,0x00000007,0x0004003b,0x00000007,0x0000005b,0x00000007,
0x0004003b,0x00000007,0x0000005e,0x00000007,0x0004003b,0x00000007,0x0000006a,0x00000007,
0x0004003b,0x00000007,0x00000071,0x00000007,0x0004003b,0x00000007,0x00000074,0x00000007,
0x0004003b,0x00000084,0x00000085,0x00000007,0x0004003b,0x00000007,0x0000008e,0x00000007,
0x0004003b,0x00000090,0x00000091,0x00000007,0x0004003b,0x00000090,0x0000009d,0x00000007,
0x0004003b,0x00000012,0x000000a0,0x00000007,0x0004003d,0x00000006,0x00000037,0x0000000f,
0x00050041,0x00000026,0x00000039,0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003a,
0x00000039,0x00050086,0x00000006,0x0000003b,0x00000037,0x0000003a,0x0003003e,0x00000036,
0x0000003b,0x0004003d,0x00000006,0x0000003d,0x0000000f,0x00050041,0x00000026,0x0000003e,
0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003f,0x0000003e,0x00050089,0x00000006,
0x00000040,0x0000003d,0x0000003f,0x0003003e,0x0000003c,0x00000040,0x0004003d,0x00000006,
0x00000043,0x00000036,0x0003003e,0x00000042,0x00000043,0x0004003d,0x00000006,0x00000045,
0x0000003c,0x0003003e,0x00000044,0x00000045,0x00060039,0x00000006,0x00000046,0x0000000b,
0x00000042,0x00000044,0x0003003e,0x00000041,0x00000046,0x0004003d,0x00000006,0x0000004d,
0x00000041,0x00050086,0x00000006,0x0000004f,0x0000004d,0x0000004e,0x00060041,0x00000050,
0x00000051,0x0000004b,0x0000004c,0x0000004f,0x0004003d,0x00000006,0x00000052,0x00000051,
0x0003003e,0x00000047,0x00000052,0x0004003d,0x00000006,0x00000054,0x0000003c,0x000500aa,
0x00000056,0x00000057,0x00000054,0x00000055,0x000600a9,0x00000024,0x00000059,0x00000057,
0x00000030,0x00000058,0x0004007c,0x00000006,0x0000005a,0x00000059,0x0003003e,0x00000053,
0x0000005a,0x0004003d,0x00000006,0x0000005c,0x0000003c,0x000500aa,0x00000056,0x0000005d,
0x0000005c,0x00000055,0x000300f7,0x00000060,0x00000000,0x000400fa,0x0000005d,0x0000005f,
0x00000062,0x000200f8,0x0000005f,0x0003003e,0x0000005e,0x00000061,0x000200f9,0x00000060,
0x000200f8,0x00000062,0x0004003d,0x00000006,0x00000063,0x00000053,0x0004003d,0x00000006,
0x00000065,0x0000003c,0x00050082,0x00000006,0x00000066,0x00000064,0x00000065,0x00050084,
0x00000006,0x00000067,0x00000063,0x00000066,0x00050080,0x00000006,0x00000068,0x00000067,
0x00000064,0x0003003e,0x0000005e,0x00000068,0x000200f9,0x00000060,0x000200f8,0x00000060,
0x0004003d,0x00000006,0x00000069,0x0000005e,0x0003003e,0x0000005b,0x00000069,0x0004003d,
0x00000006,0x0000006b,0x0000003c,0x000500aa,0x00000056,0x0000006c,0x0000006b,0x00000055,
0x000600a9,0x00000024,0x0000006f,0x0000006c,0x0000006d,0x0000006e,0x0004007c,0x00000006,
0x00000070,0x0000006f,0x0003003e,0x0000006a,0x00000070,0x0004003d,0x00000006,0x00000072,
0x0000003c,0x000500aa,0x00000056,0x00000073,0x00000072,0x00000055,0x000300f7,0x00000076,
0x00000000,0x000400fa,0x00000073,0x00000075,0x00000078,0x000200f8,0x00000075,0x0003003e,
0x00000074,0x00000077,0x000200f9,0x00000076,0x000200f8,0x00000078,0x0004003d,0x00000006,
0x00000079,0x00000047,0x0004003d,0x00000006,0x0000007a,0x0000005b,0x000500c2,0x00000006,
0x0000007b,0x00000079,0x0000007a,0x0004003d,0x00000006,0x0000007c,0x0000006a,0x000500c7,
0x00000006,0x0000007d,0x0000007b,0x0000007c,0x0003003e,0x00000074,0x0000007d,0x000200f9,
0x00000076,0x000200f8,0x00000076,0x0004003d,0x00000006,0x0000007e,0x00000074,0x0003003e,
0x00000071,0x0000007e,0x0004003d,0x00000006,0x0000007f,0x00000053,0x000500b0,0x00000056,
0x00000081,0x0000007f,0x00000080,0x000300f7,0x00000083,0x00000000,0x000400fa,0x00000081,
0x00000082,0x00000083,0x000200f8,0x00000082,0x0004003d,0x00000006,0x00000086,0x00000071,
0x0004003d,0x00000006,0x00000088,0x00000053,0x00050082,0x00000006,0x00000089,0x00000088,
0x00000077,0x000500c4,0x00000024,0x0000008a,0x00000087,0x00000089,0x0004007c,0x00000006,
0x0000008b,0x0000008a,0x000500c7,0x00000006,0x0000008c,0x00000086,0x0000008b,0x000500ab,
0x00000056,0x0000008d,0x0000008c,0x00000061,0x0003003e,0x00000085,0x0000008d,0x0004003d,
0x00000056,0x0000008f,0x00000085,0x000300f7,0x00000093,0x00000000,0x000400fa,0x0000008f,
0x00000092,0x00000097,0x000200f8,0x00000092,0x0004003d,0x00000006,0x00000095,0x00000053,
0x000500c4,0x00000024,0x00000096,0x00000094,0x00000095,0x0003003e,0x00000091,0x00000096,
0x000200f9,0x00000093,0x000200f8,0x00000097,0x0003003e,0x00000091,0x0000004c,0x000200f9,
0x00000093,0x000200f8,0x00000093,0x0004003d,0x00000024,0x00000098,0x00000091,0x0004007c,
0x00000006,0x00000099,0x00000098,0x0003003e,0x0000008e,0x00000099,0x0004003d,0x00000006,
0x0000009a,0x0000008e,0x0004003d,0x00000006,0x0000009b,0x00000071,0x000500c5,0x00000006,
0x0000009c,0x0000009b,0x0000009a,0x0003003e,0x00000071,0x0000009c,0x000200f9,0x00000083,
0x000200f8,0x00000083,0x0004003d,0x00000006,0x0000009e,0x00000071,0x0004007c,0x00000024,
0x0000009f,0x0000009e,0x0003003e,0x0000009d,0x0000009f,0x0004003d,0x00000024,0x000000a2,
0x0000009d,0x0004006f,0x0000000d,0x000000a3,0x000000a2,0x00050085,0x0000000d,0x000000a4,
0x000000a1,0x000000a3,0x00050081,0x0000000d,0x000000a6,0x000000a4,0x000000a5,0x0004003d,
0x00000006,0x000000a7,0x0000006a,0x00040070,0x0000000d,0x000000a8,0x000000a7,0x00050088,
0x0000000d,0x000000a9,0x000000a6,0x000000a8,0x0003003e,0x000000a0,0x000000a9,0x0004003d,
0x0000000d,0x000000aa,0x000000a0,0x000200fe,0x000000aa,0x00010038,0x00050036,0x0000000d,
0x00000015,0x00000000,0x00000013,0x00030037,0x00000012,0x00000014,0x000200f8,0x00000016,
0x0004003d,0x0000000d,0x000000ad,0x00000014,0x000200fe,0x000000ad,0x00010038,0x00050036,
0x00000006,0x0000001a,0x00000000,0x00000017,0x00030037,0x00000007,0x00000018,0x00030037,
0x00000012,0x00000019,0x000200f8,0x0000001b,0x0004003b,0x00000007,0x000000b0,0x00000007,
0x0004003d,0x0000000d,0x000000b1,0x00000019,0x0004007c,0x00000024,0x000000b2,0x000000b1,
0x0004007c,0x00000006,0x000000b3,0x000000b2,0x0003003e,0x000000b0,0x000000b3,0x0004003d,
0x00000006,0x000000b4,0x000000b0,0x000200fe,0x000000b4,0x00010038,0x00050036,0x00000002,
0x0000001e,0x00000000,0x0000001c,0x00030037,0x00000007,0x0000001d,0x000200f8,0x0000001f,
0x00050041,0x000000be,0x000000bf,0x000000bd,0x00000061,0x0004003d,0x00000006,0x000000c0,
0x000000bf,0x00050041,0x00000026,0x000000c1,0x00000023,0x0000006d,0x0004003d,0x00000006,
0x000000c2,0x000000c1,0x00050086,0x00000006,0x000000c3,0x000000c2,0x0000004e,0x00050080,
0x00000006,0x000000c4,0x000000c0,0x000000c3,0x0004003d,0x00000006,0x000000c5,0x0000001d,
0x00060041,0x00000050,0x000000c6,0x000000ba,0x0000004c,0x000000c4,0x0003003e,0x000000c6,
0x000000c5,0x000100fd,0x00010038
0x00000024,0x00000094,0xffffffff,0x0004002b,0x0000000d,0x000000a8,0xbf800000,0x0003001d,
0x000000b7,0x00000006,0x0003001e,0x000000b8,0x000000b7,0x00040020,0x000000b9,0x00000002,
0x000000b8,0x0004003b,0x000000b9,0x000000ba,0x00000002,0x00040017,0x000000bb,0x00000006,
0x00000003,0x00040020,0x000000bc,0x00000001,0x000000bb,0x0004003b,0x000000bc,0x000000bd,
0x00000001,0x00040020,0x000000be,0x00000001,0x00000006,0x0004002b,0x00000006,0x000000f9,
0x00000040,0x0006002c,0x000000bb,0x000000fa,0x000000f9,0x00000077,0x00000077,0x00050036,
0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,0x0004003b,0x00000007,
0x000000cf,0x00000007,0x0004003b,0x00000007,0x000000d0,0x00000007,0x0004003b,0x00000007,
0x000000d8,0x00000007,0x0004003b,0x00000012,0x000000e5,0x00000007,0x0004003b,0x00000007,
0x000000e6,0x00000007,0x0004003b,0x00000012,0x000000e9,0x00000007,0x0004003b,0x00000012,
0x000000ea,0x00000007,0x0004003b,0x00000007,0x000000ed,0x00000007,0x0004003b,0x00000012,
0x000000ef,0x00000007,0x0004003b,0x00000007,0x000000f6,0x00000007,0x00050041,0x000000be,
0x000000c7,0x000000bd,0x00000061,0x0004003d,0x00000006,0x000000c8,0x000000c7,0x00050041,
0x00000026,0x000000c9,0x00000023,0x0000004c,0x0004003d,0x00000006,0x000000ca,0x000000c9,
0x000500ae,0x00000056,0x000000cb,0x000000c8,0x000000ca,0x000300f7,0x000000cd,0x00000000,
0x000400fa,0x000000cb,0x000000cc,0x000000cd,0x000200f8,0x000000cc,0x000100fd,0x000200f8,
0x000000cd,0x0003003e,0x000000cf,0x00000061,0x0003003e,0x000000d0,0x00000061,0x000200f9,
0x000000d1,0x000200f8,0x000000d1,0x000400f6,0x000000d3,0x000000d4,0x00000000,0x000200f9,
0x000000d5,0x000200f8,0x000000d5,0x0004003d,0x00000006,0x000000d6,0x000000d0,0x000500b0,
0x00000056,0x000000d7,0x000000d6,0x00000077,0x000400fa,0x000000d7,0x000000d2,0x000000d3,
0x000200f8,0x000000d2,0x00050041,0x000000be,0x000000d9,0x000000bd,0x00000061,0x0004003d,
0x00000006,0x000000da,0x000000d9,0x00050084,0x00000006,0x000000db,0x000000da,0x00000077,
0x0004003d,0x00000006,0x000000dc,0x000000d0,0x00050080,0x00000006,0x000000dd,0x000000db,
0x000000dc,0x0003003e,0x000000d8,0x000000dd,0x0004003d,0x00000006,0x000000de,0x000000d8,
0x00050041,0x00000026,0x000000df,0x00000023,0x00000087,0x0004003d,0x00000006,0x000000e0,
0x000000df,0x000500ae,0x00000056,0x000000e1,0x000000de,0x000000e0,0x000300f7,0x000000e3,
0x00000000,0x000400fa,0x000000e1,0x000000e2,0x000000e3,0x000200f8,0x000000e2,0x000200f9,
0x000000d3,0x000200f8,0x000000e3,0x0004003d,0x00000006,0x000000e7,0x000000d8,0x0003003e,
0x000000e6,0x000000e7,0x00050039,0x0000000d,0x000000e8,0x00000010,0x000000e6,0x0003003e,
0x000000e5,0x000000e8,0x0004003d,0x0000000d,0x000000eb,0x000000e5,0x0003003e,0x000000ea,
0x000000eb,0x00050039,0x0000000d,0x000000ec,0x00000015,0x000000ea,0x0003003e,0x000000e9,
0x000000ec,0x0004003d,0x00000006,0x000000ee,0x000000d8,0x0003003e,0x000000ed,0x000000ee,
0x0004003d,0x0000000d,0x000000f0,0x000000e9,0x0003003e,0x000000ef,0x000000f0,0x00060039,
0x00000006,0x000000f1,0x0000001a,0x000000ed,0x000000ef,0x0004003d,0x00000006,0x000000f2,
0x000000cf,0x000500c5,0x00000006,0x000000f3,0x000000f2,0x000000f1,0x0003003e,0x000000cf,
0x000000f3,0x000200f9,0x000000d4,0x000200f8,0x000000d4,0x0004003d,0x00000006,0x000000f4,
0x000000d0,0x00050080,0x00000006,0x000000f5,0x000000f4,0x00000087,0x0003003e,0x000000d0,
0x000000f5,0x000200f9,0x000000d1,0x000200f8,0x000000d3,0x0004003d,0x00000006,0x000000f7,
0x000000cf,0x0003003e,0x000000f6,0x000000f7,0x00050039,0x00000002,0x000000f8,0x0000001e,
0x000000f6,0x000100fd,0x00010038,0x00050036,0x00000006,0x0000000b,0x00000000,0x00000008,
0x00030037,0x00000007,0x00000009,0x00030037,0x00000007,0x0000000a,0x000200f8,0x0000000c,
0x0004003d,0x00000006,0x00000020,0x00000009,0x00050041,0x00000026,0x00000027,0x00000023,
0x00000025,0x0004003d,0x00000006,0x00000028,0x00000027,0x00050084,0x00000006,0x00000029,
0x00000020,0x00000028,0x0004003d,0x00000006,0x0000002a,0x0000000a,0x00050041,0x00000026,
0x0000002c,0x00000023,0x0000002b,0x0004003d,0x00000006,0x0000002d,0x0000002c,0x00050084,
0x00000006,0x0000002e,0x0000002a,0x0000002d,0x00050080,0x00000006,0x0000002f,0x00000029,
0x0000002e,0x00050041,0x00000026,0x00000031,0x00000023,0x00000030,0x0004003d,0x00000006,
0x00000032,0x00000031,0x00050080,0x00000006,0x00000033,0x0000002f,0x00000032,0x000200fe,
0x00000033,0x00010038,0x00050036,0x0000000d,0x00000010,0x00000000,0x0000000e,0x00030037,
0x00000007,0x0000000f,0x000200f8,0x00000011,0x0004003b,0x00000007,0x00000036,0x00000007,
0x0004003b,0x00000007,0x0000003c,0x00000007,0x0004003b,0x00000007,0x00000041,0x00000007,
0x0004003b,0x00000007,0x00000042,0x00000007,0x0004003b,0x00000007,0x00000044,0x00000007,
0x0004003b,0x00000007,0x00000047,0x00000007,0x0004003b,0x00000007,0x00000053,0x00000007,
0x0004003b,0x00000007,0x0000005b,0x00000007,0x0004003b,0x00000007,0x0000005e,0x00000007,
0x0004003b,0x00000007,0x0000006a,0x00000007,0x0004003b,0x00000007,0x00000071,0x00000007,
0x0004003b,0x00000007,0x00000074,0x00000007,0x0004003b,0x00000084,0x00000085,0x00000007,
0x0004003b,0x00000007,0x0000008e,0x00000007,0x0004003b,0x00000090,0x00000091,0x00000007,
0x0004003b,0x00000090,0x0000009d,0x00000007,0x0004003b,0x00000012,0x000000a0,0x00000007,
0x0004003d,0x00000006,0x00000037,0x0000000f,0x00050041,0x00000026,0x00000039,0x00000023,
0x00000038,0x0004003d,0x00000006,0x0000003a,0x00000039,0x00050086,0x00000006,0x0000003b,
0x00000037,0x0000003a,0x0003003e,0x00000036,0x0000003b,0x0004003d,0x00000006,0x0000003d,
0x0000000f,0x00050041,0x00000026,0x0000003e,0x00000023,0x00000038,0x0004003d,0x00000006,
0x0000003f,0x0000003e,0x00050089,0x00000006,0x00000040,0x0000003d,0x0000003f,0x0003003e,
0x0000003c,0x00000040,0x0004003d,0x00000006,0x00000043,0x00000036,0x0003003e,0x00000042,
0x00000043,0x0004003d,0x00000006,0x00000045,0x0000003c,0x0003003e,0x00000044,0x00000045,
0x00060039,0x00000006,0x00000046,0x0000000b,0x00000042,0x00000044,0x0003003e,0x00000041,
0x00000046,0x0004003d,0x00000006,0x0000004d,0x00000041,0x00050086,0x00000006,0x0000004f,
0x0000004d,0x0000004e,0x00060041,0x00000050,0x00000051,0x0000004b,0x0000004c,0x0000004f,
0x0004003d,0x00000006,0x00000052,0x00000051,0x0003003e,0x00000047,0x00000052,0x0004003d,
0x00000006,0x00000054,0x0000003c,0x000500aa,0x00000056,0x00000057,0x00000054,0x00000055,
0x000600a9,0x00000024,0x00000059,0x00000057,0x00000030,0x00000058,0x0004007c,0x00000006,
0x0000005a,0x00000059,0x0003003e,0x00000053,0x0000005a,0x0004003d,0x00000006,0x0000005c,
0x0000003c,0x000500aa,0x00000056,0x0000005d,0x0000005c,0x00000055,0x000300f7,0x00000060,
0x00000000,0x000400fa,0x0000005d,0x0000005f,0x00000062,0x000200f8,0x0000005f,0x0003003e,
0x0000005e,0x00000061,0x000200f9,0x00000060,0x000200f8,0x00000062,0x0004003d,0x00000006,
0x00000063,0x00000053,0x0004003d,0x00000006,0x00000065,0x0000003c,0x00050082,0x00000006,
0x00000066,0x00000064,0x00000065,0x00050084,0x00000006,0x00000067,0x00000063,0x00000066,
0x00050080,0x00000006,0x00000068,0x00000067,0x00000064,0x0003003e,0x0000005e,0x00000068,
0x000200f9,0x00000060,0x000200f8,0x00000060,0x0004003d,0x00000006,0x00000069,0x0000005e,
0x0003003e,0x0000005b,0x00000069,0x0004003d,0x00000006,0x0000006b,0x0000003c,0x000500aa,
0x00000056,0x0000006c,0x0000006b,0x00000055,0x000600a9,0x00000024,0x0000006f,0x0000006c,
0x0000006d,0x0000006e,0x0004007c,0x00000006,0x00000070,0x0000006f,0x0003003e,0x0000006a,
0x00000070,0x0004003d,0x00000006,0x00000072,0x0000003c,0x000500aa,0x00000056,0x00000073,
0x00000072,0x00000055,0x000300f7,0x00000076,0x00000000,0x000400fa,0x00000073,0x00000075,
0x00000078,0x000200f8,0x00000075,0x0003003e,0x00000074,0x00000077,0x000200f9,0x00000076,
0x000200f8,0x00000078,0x0004003d,0x00000006,0x00000079,0x00000047,0x0004003d,0x00000006,
0x0000007a,0x0000005b,0x000500c2,0x00000006,0x0000007b,0x00000079,0x0000007a,0x0004003d,
0x00000006,0x0000007c,0x0000006a,0x000500c7,0x00000006,0x0000007d,0x0000007b,0x0000007c,
0x0003003e,0x00000074,0x0000007d,0x000200f9,0x00000076,0x000200f8,0x00000076,0x0004003d,
0x00000006,0x0000007e,0x00000074,0x0003003e,0x00000071,0x0000007e,0x0004003d,0x00000006,
0x0000007f,0x00000053,0x000500b0,0x00000056,0x00000081,0x0000007f,0x00000080,0x000300f7,
0x00000083,0x00000000,0x000400fa,0x00000081,0x00000082,0x00000083,0x000200f8,0x00000082,
0x0004003d,0x00000006,0x00000086,0x00000071,0x0004003d,0x00000006,0x00000088,0x00000053,
0x00050082,0x00000006,0x00000089,0x00000088,0x00000077,0x000500c4,0x00000024,0x0000008a,
0x00000087,0x00000089,0x0004007c,0x00000006,0x0000008b,0x0000008a,0x000500c7,0x00000006,
0x0000008c,0x00000086,0x0000008b,0x000500ab,0x00000056,0x0000008d,0x0000008c,0x00000061,
0x0003003e,0x00000085,0x0000008d,0x0004003d,0x00000056,0x0000008f,0x00000085,0x000300f7,
0x00000093,0x00000000,0x000400fa,0x0000008f,0x00000092,0x00000097,0x000200f8,0x00000092,
0x0004003d,0x00000006,0x00000095,0x00000053,0x000500c4,0x00000024,0x00000096,0x00000094,
0x00000095,0x0003003e,0x00000091,0x00000096,0x000200f9,0x00000093,0x000200f8,0x00000097,
0x0003003e,0x00000091,0x0000004c,0x000200f9,0x00000093,0x000200f8,0x00000093,0x0004003d,
0x00000024,0x00000098,0x00000091,0x0004007c,0x00000006,0x00000099,0x00000098,0x0003003e,
0x0000008e,0x00000099,0x0004003d,0x00000006,0x0000009a,0x0000008e,0x0004003d,0x00000006,
0x0000009b,0x00000071,0x000500c5,0x00000006,0x0000009c,0x0000009b,0x0000009a,0x0003003e,
0x00000071,0x0000009c,0x000200f9,0x00000083,0x000200f8,0x00000083,0x0004003d,0x00000006,
0x0000009e,0x00000071,0x0004007c,0x00000024,0x0000009f,0x0000009e,0x0003003e,0x0000009d,
0x0000009f,0x0004003d,0x00000024,0x000000a1,0x0000009d,0x0004006f,0x0000000d,0x000000a2,
0x000000a1,0x0004003d,0x00000006,0x000000a3,0x0000006a,0x000500c2,0x00000006,0x000000a4,
0x000000a3,0x00000087,0x00040070,0x0000000d,0x000000a5,0x000000a4,0x00050088,0x0000000d,
0x000000a6,0x000000a2,0x000000a5,0x0003003e,0x000000a0,0x000000a6,0x0004003d,0x0000000d,
0x000000a7,0x000000a0,0x0007000c,0x0000000d,0x000000a9,0x00000001,0x00000028,0x000000a7,
0x000000a8,0x0003003e,0x000000a0,0x000000a9,0x0004003d,0x0000000d,0x000000aa,0x000000a0,
0x000200fe,0x000000aa,0x00010038,0x00050036,0x0000000d,0x00000015,0x00000000,0x00000013,
0x00030037,0x00000012,0x00000014,0x000200f8,0x00000016,0x0004003d,0x0000000d,0x000000ad,
0x00000014,0x000200fe,0x000000ad,0x00010038,0x00050036,0x00000006,0x0000001a,0x00000000,
0x00000017,0x00030037,0x00000007,0x00000018,0x00030037,0x00000012,0x00000019,0x000200f8,
0x0000001b,0x0004003b,0x00000007,0x000000b0,0x00000007,0x0004003d,0x0000000d,0x000000b1,
0x00000019,0x0004007c,0x00000024,0x000000b2,0x000000b1,0x0004007c,0x00000006,0x000000b3,
0x000000b2,0x0003003e,0x000000b0,0x000000b3,0x0004003d,0x00000006,0x000000b4,0x000000b0,
0x000200fe,0x000000b4,0x00010038,0x00050036,0x00000002,0x0000001e,0x00000000,0x0000001c,
0x00030037,0x00000007,0x0000001d,0x000200f8,0x0000001f,0x00050041,0x000000be,0x000000bf,
0x000000bd,0x00000061,0x0004003d,0x00000006,0x000000c0,0x000000bf,0x00050041,0x00000026,
0x000000c1,0x00000023,0x0000006d,0x0004003d,0x00000006,0x000000c2,0x000000c1,0x00050086,
0x00000006,0x000000c3,0x000000c2,0x0000004e,0x00050080,0x00000006,0x000000c4,0x000000c0,
0x000000c3,0x0004003d,0x00000006,0x000000c5,0x0000001d,0x00060041,0x00000050,0x000000c6,
0x000000ba,0x0000004c,0x000000c4,0x0003003e,0x000000c6,0x000000c5,0x000100fd,0x00010038
};
// Generated from:
......@@ -281,7 +281,8 @@ const uint32_t kConvertVertex_comp_00000026[] = {
// valueAsUint |= signExtension;
// }
// int valueAsInt = int(valueAsUint);
// float value =(2 * float(valueAsInt)+ 1)/ valueMask;
// float value = float(valueAsInt)/(valueMask >> 1);
// value = max(value, float(- 1));
//
// return value;
// }
......
......@@ -75,124 +75,124 @@ const uint32_t kConvertVertex_comp_00000027[] = {
0x00000024,0x0000006e,0x000003ff,0x0004002b,0x00000006,0x00000077,0x00000001,0x0004002b,
0x00000006,0x00000080,0x00000020,0x00040020,0x00000084,0x00000007,0x00000056,0x0004002b,
0x00000024,0x00000087,0x00000001,0x00040020,0x00000090,0x00000007,0x00000024,0x0004002b,
0x00000024,0x00000094,0xffffffff,0x0004002b,0x0000000d,0x000000a1,0x40000000,0x0004002b,
0x0000000d,0x000000a5,0x3f800000,0x0003001d,0x000000b7,0x00000006,0x0003001e,0x000000b8,
0x000000b7,0x00040020,0x000000b9,0x00000002,0x000000b8,0x0004003b,0x000000b9,0x000000ba,
0x00000002,0x00040017,0x000000bb,0x00000006,0x00000003,0x00040020,0x000000bc,0x00000001,
0x000000bb,0x0004003b,0x000000bc,0x000000bd,0x00000001,0x00040020,0x000000be,0x00000001,
0x00000006,0x0004002b,0x00000006,0x000000ea,0x00000040,0x0006002c,0x000000bb,0x000000eb,
0x000000ea,0x00000077,0x00000077,0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,
0x000200f8,0x00000005,0x0004003b,0x00000007,0x000000c7,0x00000007,0x0004003b,0x00000007,
0x000000c8,0x00000007,0x0004003b,0x00000007,0x000000d0,0x00000007,0x0004003b,0x00000012,
0x000000d6,0x00000007,0x0004003b,0x00000007,0x000000d7,0x00000007,0x0004003b,0x00000012,
0x000000da,0x00000007,0x0004003b,0x00000012,0x000000db,0x00000007,0x0004003b,0x00000007,
0x000000de,0x00000007,0x0004003b,0x00000012,0x000000e0,0x00000007,0x0004003b,0x00000007,
0x000000e7,0x00000007,0x0003003e,0x000000c7,0x00000061,0x0003003e,0x000000c8,0x00000061,
0x000200f9,0x000000c9,0x000200f8,0x000000c9,0x000400f6,0x000000cb,0x000000cc,0x00000000,
0x000200f9,0x000000cd,0x000200f8,0x000000cd,0x0004003d,0x00000006,0x000000ce,0x000000c8,
0x000500b0,0x00000056,0x000000cf,0x000000ce,0x00000077,0x000400fa,0x000000cf,0x000000ca,
0x000000cb,0x000200f8,0x000000ca,0x00050041,0x000000be,0x000000d1,0x000000bd,0x00000061,
0x0004003d,0x00000006,0x000000d2,0x000000d1,0x00050084,0x00000006,0x000000d3,0x000000d2,
0x00000077,0x0004003d,0x00000006,0x000000d4,0x000000c8,0x00050080,0x00000006,0x000000d5,
0x000000d3,0x000000d4,0x0003003e,0x000000d0,0x000000d5,0x0004003d,0x00000006,0x000000d8,
0x000000d0,0x0003003e,0x000000d7,0x000000d8,0x00050039,0x0000000d,0x000000d9,0x00000010,
0x000000d7,0x0003003e,0x000000d6,0x000000d9,0x0004003d,0x0000000d,0x000000dc,0x000000d6,
0x0003003e,0x000000db,0x000000dc,0x00050039,0x0000000d,0x000000dd,0x00000015,0x000000db,
0x0003003e,0x000000da,0x000000dd,0x0004003d,0x00000006,0x000000df,0x000000d0,0x0003003e,
0x000000de,0x000000df,0x0004003d,0x0000000d,0x000000e1,0x000000da,0x0003003e,0x000000e0,
0x000000e1,0x00060039,0x00000006,0x000000e2,0x0000001a,0x000000de,0x000000e0,0x0004003d,
0x00000006,0x000000e3,0x000000c7,0x000500c5,0x00000006,0x000000e4,0x000000e3,0x000000e2,
0x0003003e,0x000000c7,0x000000e4,0x000200f9,0x000000cc,0x000200f8,0x000000cc,0x0004003d,
0x00000006,0x000000e5,0x000000c8,0x00050080,0x00000006,0x000000e6,0x000000e5,0x00000087,
0x0003003e,0x000000c8,0x000000e6,0x000200f9,0x000000c9,0x000200f8,0x000000cb,0x0004003d,
0x00000006,0x000000e8,0x000000c7,0x0003003e,0x000000e7,0x000000e8,0x00050039,0x00000002,
0x000000e9,0x0000001e,0x000000e7,0x000100fd,0x00010038,0x00050036,0x00000006,0x0000000b,
0x00000000,0x00000008,0x00030037,0x00000007,0x00000009,0x00030037,0x00000007,0x0000000a,
0x000200f8,0x0000000c,0x0004003d,0x00000006,0x00000020,0x00000009,0x00050041,0x00000026,
0x00000027,0x00000023,0x00000025,0x0004003d,0x00000006,0x00000028,0x00000027,0x00050084,
0x00000006,0x00000029,0x00000020,0x00000028,0x0004003d,0x00000006,0x0000002a,0x0000000a,
0x00050041,0x00000026,0x0000002c,0x00000023,0x0000002b,0x0004003d,0x00000006,0x0000002d,
0x0000002c,0x00050084,0x00000006,0x0000002e,0x0000002a,0x0000002d,0x00050080,0x00000006,
0x0000002f,0x00000029,0x0000002e,0x00050041,0x00000026,0x00000031,0x00000023,0x00000030,
0x0004003d,0x00000006,0x00000032,0x00000031,0x00050080,0x00000006,0x00000033,0x0000002f,
0x00000032,0x000200fe,0x00000033,0x00010038,0x00050036,0x0000000d,0x00000010,0x00000000,
0x0000000e,0x00030037,0x00000007,0x0000000f,0x000200f8,0x00000011,0x0004003b,0x00000007,
0x00000036,0x00000007,0x0004003b,0x00000007,0x0000003c,0x00000007,0x0004003b,0x00000007,
0x00000041,0x00000007,0x0004003b,0x00000007,0x00000042,0x00000007,0x0004003b,0x00000007,
0x00000044,0x00000007,0x0004003b,0x00000007,0x00000047,0x00000007,0x0004003b,0x00000007,
0x00000053,0x00000007,0x0004003b,0x00000007,0x0000005b,0x00000007,0x0004003b,0x00000007,
0x0000005e,0x00000007,0x0004003b,0x00000007,0x0000006a,0x00000007,0x0004003b,0x00000007,
0x00000071,0x00000007,0x0004003b,0x00000007,0x00000074,0x00000007,0x0004003b,0x00000084,
0x00000085,0x00000007,0x0004003b,0x00000007,0x0000008e,0x00000007,0x0004003b,0x00000090,
0x00000091,0x00000007,0x0004003b,0x00000090,0x0000009d,0x00000007,0x0004003b,0x00000012,
0x000000a0,0x00000007,0x0004003d,0x00000006,0x00000037,0x0000000f,0x00050041,0x00000026,
0x00000039,0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003a,0x00000039,0x00050086,
0x00000006,0x0000003b,0x00000037,0x0000003a,0x0003003e,0x00000036,0x0000003b,0x0004003d,
0x00000006,0x0000003d,0x0000000f,0x00050041,0x00000026,0x0000003e,0x00000023,0x00000038,
0x0004003d,0x00000006,0x0000003f,0x0000003e,0x00050089,0x00000006,0x00000040,0x0000003d,
0x0000003f,0x0003003e,0x0000003c,0x00000040,0x0004003d,0x00000006,0x00000043,0x00000036,
0x0003003e,0x00000042,0x00000043,0x0004003d,0x00000006,0x00000045,0x0000003c,0x0003003e,
0x00000044,0x00000045,0x00060039,0x00000006,0x00000046,0x0000000b,0x00000042,0x00000044,
0x0003003e,0x00000041,0x00000046,0x0004003d,0x00000006,0x0000004d,0x00000041,0x00050086,
0x00000006,0x0000004f,0x0000004d,0x0000004e,0x00060041,0x00000050,0x00000051,0x0000004b,
0x0000004c,0x0000004f,0x0004003d,0x00000006,0x00000052,0x00000051,0x0003003e,0x00000047,
0x00000052,0x0004003d,0x00000006,0x00000054,0x0000003c,0x000500aa,0x00000056,0x00000057,
0x00000054,0x00000055,0x000600a9,0x00000024,0x00000059,0x00000057,0x00000030,0x00000058,
0x0004007c,0x00000006,0x0000005a,0x00000059,0x0003003e,0x00000053,0x0000005a,0x0004003d,
0x00000006,0x0000005c,0x0000003c,0x000500aa,0x00000056,0x0000005d,0x0000005c,0x00000055,
0x000300f7,0x00000060,0x00000000,0x000400fa,0x0000005d,0x0000005f,0x00000062,0x000200f8,
0x0000005f,0x0003003e,0x0000005e,0x00000061,0x000200f9,0x00000060,0x000200f8,0x00000062,
0x0004003d,0x00000006,0x00000063,0x00000053,0x0004003d,0x00000006,0x00000065,0x0000003c,
0x00050082,0x00000006,0x00000066,0x00000064,0x00000065,0x00050084,0x00000006,0x00000067,
0x00000063,0x00000066,0x00050080,0x00000006,0x00000068,0x00000067,0x00000064,0x0003003e,
0x0000005e,0x00000068,0x000200f9,0x00000060,0x000200f8,0x00000060,0x0004003d,0x00000006,
0x00000069,0x0000005e,0x0003003e,0x0000005b,0x00000069,0x0004003d,0x00000006,0x0000006b,
0x0000003c,0x000500aa,0x00000056,0x0000006c,0x0000006b,0x00000055,0x000600a9,0x00000024,
0x0000006f,0x0000006c,0x0000006d,0x0000006e,0x0004007c,0x00000006,0x00000070,0x0000006f,
0x0003003e,0x0000006a,0x00000070,0x0004003d,0x00000006,0x00000072,0x0000003c,0x000500aa,
0x00000056,0x00000073,0x00000072,0x00000055,0x000300f7,0x00000076,0x00000000,0x000400fa,
0x00000073,0x00000075,0x00000078,0x000200f8,0x00000075,0x0003003e,0x00000074,0x00000077,
0x000200f9,0x00000076,0x000200f8,0x00000078,0x0004003d,0x00000006,0x00000079,0x00000047,
0x0004003d,0x00000006,0x0000007a,0x0000005b,0x000500c2,0x00000006,0x0000007b,0x00000079,
0x0000007a,0x0004003d,0x00000006,0x0000007c,0x0000006a,0x000500c7,0x00000006,0x0000007d,
0x0000007b,0x0000007c,0x0003003e,0x00000074,0x0000007d,0x000200f9,0x00000076,0x000200f8,
0x00000076,0x0004003d,0x00000006,0x0000007e,0x00000074,0x0003003e,0x00000071,0x0000007e,
0x0004003d,0x00000006,0x0000007f,0x00000053,0x000500b0,0x00000056,0x00000081,0x0000007f,
0x00000080,0x000300f7,0x00000083,0x00000000,0x000400fa,0x00000081,0x00000082,0x00000083,
0x000200f8,0x00000082,0x0004003d,0x00000006,0x00000086,0x00000071,0x0004003d,0x00000006,
0x00000088,0x00000053,0x00050082,0x00000006,0x00000089,0x00000088,0x00000077,0x000500c4,
0x00000024,0x0000008a,0x00000087,0x00000089,0x0004007c,0x00000006,0x0000008b,0x0000008a,
0x000500c7,0x00000006,0x0000008c,0x00000086,0x0000008b,0x000500ab,0x00000056,0x0000008d,
0x0000008c,0x00000061,0x0003003e,0x00000085,0x0000008d,0x0004003d,0x00000056,0x0000008f,
0x00000085,0x000300f7,0x00000093,0x00000000,0x000400fa,0x0000008f,0x00000092,0x00000097,
0x000200f8,0x00000092,0x0004003d,0x00000006,0x00000095,0x00000053,0x000500c4,0x00000024,
0x00000096,0x00000094,0x00000095,0x0003003e,0x00000091,0x00000096,0x000200f9,0x00000093,
0x000200f8,0x00000097,0x0003003e,0x00000091,0x0000004c,0x000200f9,0x00000093,0x000200f8,
0x00000093,0x0004003d,0x00000024,0x00000098,0x00000091,0x0004007c,0x00000006,0x00000099,
0x00000098,0x0003003e,0x0000008e,0x00000099,0x0004003d,0x00000006,0x0000009a,0x0000008e,
0x0004003d,0x00000006,0x0000009b,0x00000071,0x000500c5,0x00000006,0x0000009c,0x0000009b,
0x0000009a,0x0003003e,0x00000071,0x0000009c,0x000200f9,0x00000083,0x000200f8,0x00000083,
0x0004003d,0x00000006,0x0000009e,0x00000071,0x0004007c,0x00000024,0x0000009f,0x0000009e,
0x0003003e,0x0000009d,0x0000009f,0x0004003d,0x00000024,0x000000a2,0x0000009d,0x0004006f,
0x0000000d,0x000000a3,0x000000a2,0x00050085,0x0000000d,0x000000a4,0x000000a1,0x000000a3,
0x00050081,0x0000000d,0x000000a6,0x000000a4,0x000000a5,0x0004003d,0x00000006,0x000000a7,
0x0000006a,0x00040070,0x0000000d,0x000000a8,0x000000a7,0x00050088,0x0000000d,0x000000a9,
0x000000a6,0x000000a8,0x0003003e,0x000000a0,0x000000a9,0x0004003d,0x0000000d,0x000000aa,
0x000000a0,0x000200fe,0x000000aa,0x00010038,0x00050036,0x0000000d,0x00000015,0x00000000,
0x00000013,0x00030037,0x00000012,0x00000014,0x000200f8,0x00000016,0x0004003d,0x0000000d,
0x000000ad,0x00000014,0x000200fe,0x000000ad,0x00010038,0x00050036,0x00000006,0x0000001a,
0x00000000,0x00000017,0x00030037,0x00000007,0x00000018,0x00030037,0x00000012,0x00000019,
0x000200f8,0x0000001b,0x0004003b,0x00000007,0x000000b0,0x00000007,0x0004003d,0x0000000d,
0x000000b1,0x00000019,0x0004007c,0x00000024,0x000000b2,0x000000b1,0x0004007c,0x00000006,
0x000000b3,0x000000b2,0x0003003e,0x000000b0,0x000000b3,0x0004003d,0x00000006,0x000000b4,
0x000000b0,0x000200fe,0x000000b4,0x00010038,0x00050036,0x00000002,0x0000001e,0x00000000,
0x0000001c,0x00030037,0x00000007,0x0000001d,0x000200f8,0x0000001f,0x00050041,0x000000be,
0x000000bf,0x000000bd,0x00000061,0x0004003d,0x00000006,0x000000c0,0x000000bf,0x00050041,
0x00000026,0x000000c1,0x00000023,0x0000006d,0x0004003d,0x00000006,0x000000c2,0x000000c1,
0x00050086,0x00000006,0x000000c3,0x000000c2,0x0000004e,0x00050080,0x00000006,0x000000c4,
0x000000c0,0x000000c3,0x0004003d,0x00000006,0x000000c5,0x0000001d,0x00060041,0x00000050,
0x000000c6,0x000000ba,0x0000004c,0x000000c4,0x0003003e,0x000000c6,0x000000c5,0x000100fd,
0x00010038
0x00000024,0x00000094,0xffffffff,0x0004002b,0x0000000d,0x000000a8,0xbf800000,0x0003001d,
0x000000b7,0x00000006,0x0003001e,0x000000b8,0x000000b7,0x00040020,0x000000b9,0x00000002,
0x000000b8,0x0004003b,0x000000b9,0x000000ba,0x00000002,0x00040017,0x000000bb,0x00000006,
0x00000003,0x00040020,0x000000bc,0x00000001,0x000000bb,0x0004003b,0x000000bc,0x000000bd,
0x00000001,0x00040020,0x000000be,0x00000001,0x00000006,0x0004002b,0x00000006,0x000000ea,
0x00000040,0x0006002c,0x000000bb,0x000000eb,0x000000ea,0x00000077,0x00000077,0x00050036,
0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,0x0004003b,0x00000007,
0x000000c7,0x00000007,0x0004003b,0x00000007,0x000000c8,0x00000007,0x0004003b,0x00000007,
0x000000d0,0x00000007,0x0004003b,0x00000012,0x000000d6,0x00000007,0x0004003b,0x00000007,
0x000000d7,0x00000007,0x0004003b,0x00000012,0x000000da,0x00000007,0x0004003b,0x00000012,
0x000000db,0x00000007,0x0004003b,0x00000007,0x000000de,0x00000007,0x0004003b,0x00000012,
0x000000e0,0x00000007,0x0004003b,0x00000007,0x000000e7,0x00000007,0x0003003e,0x000000c7,
0x00000061,0x0003003e,0x000000c8,0x00000061,0x000200f9,0x000000c9,0x000200f8,0x000000c9,
0x000400f6,0x000000cb,0x000000cc,0x00000000,0x000200f9,0x000000cd,0x000200f8,0x000000cd,
0x0004003d,0x00000006,0x000000ce,0x000000c8,0x000500b0,0x00000056,0x000000cf,0x000000ce,
0x00000077,0x000400fa,0x000000cf,0x000000ca,0x000000cb,0x000200f8,0x000000ca,0x00050041,
0x000000be,0x000000d1,0x000000bd,0x00000061,0x0004003d,0x00000006,0x000000d2,0x000000d1,
0x00050084,0x00000006,0x000000d3,0x000000d2,0x00000077,0x0004003d,0x00000006,0x000000d4,
0x000000c8,0x00050080,0x00000006,0x000000d5,0x000000d3,0x000000d4,0x0003003e,0x000000d0,
0x000000d5,0x0004003d,0x00000006,0x000000d8,0x000000d0,0x0003003e,0x000000d7,0x000000d8,
0x00050039,0x0000000d,0x000000d9,0x00000010,0x000000d7,0x0003003e,0x000000d6,0x000000d9,
0x0004003d,0x0000000d,0x000000dc,0x000000d6,0x0003003e,0x000000db,0x000000dc,0x00050039,
0x0000000d,0x000000dd,0x00000015,0x000000db,0x0003003e,0x000000da,0x000000dd,0x0004003d,
0x00000006,0x000000df,0x000000d0,0x0003003e,0x000000de,0x000000df,0x0004003d,0x0000000d,
0x000000e1,0x000000da,0x0003003e,0x000000e0,0x000000e1,0x00060039,0x00000006,0x000000e2,
0x0000001a,0x000000de,0x000000e0,0x0004003d,0x00000006,0x000000e3,0x000000c7,0x000500c5,
0x00000006,0x000000e4,0x000000e3,0x000000e2,0x0003003e,0x000000c7,0x000000e4,0x000200f9,
0x000000cc,0x000200f8,0x000000cc,0x0004003d,0x00000006,0x000000e5,0x000000c8,0x00050080,
0x00000006,0x000000e6,0x000000e5,0x00000087,0x0003003e,0x000000c8,0x000000e6,0x000200f9,
0x000000c9,0x000200f8,0x000000cb,0x0004003d,0x00000006,0x000000e8,0x000000c7,0x0003003e,
0x000000e7,0x000000e8,0x00050039,0x00000002,0x000000e9,0x0000001e,0x000000e7,0x000100fd,
0x00010038,0x00050036,0x00000006,0x0000000b,0x00000000,0x00000008,0x00030037,0x00000007,
0x00000009,0x00030037,0x00000007,0x0000000a,0x000200f8,0x0000000c,0x0004003d,0x00000006,
0x00000020,0x00000009,0x00050041,0x00000026,0x00000027,0x00000023,0x00000025,0x0004003d,
0x00000006,0x00000028,0x00000027,0x00050084,0x00000006,0x00000029,0x00000020,0x00000028,
0x0004003d,0x00000006,0x0000002a,0x0000000a,0x00050041,0x00000026,0x0000002c,0x00000023,
0x0000002b,0x0004003d,0x00000006,0x0000002d,0x0000002c,0x00050084,0x00000006,0x0000002e,
0x0000002a,0x0000002d,0x00050080,0x00000006,0x0000002f,0x00000029,0x0000002e,0x00050041,
0x00000026,0x00000031,0x00000023,0x00000030,0x0004003d,0x00000006,0x00000032,0x00000031,
0x00050080,0x00000006,0x00000033,0x0000002f,0x00000032,0x000200fe,0x00000033,0x00010038,
0x00050036,0x0000000d,0x00000010,0x00000000,0x0000000e,0x00030037,0x00000007,0x0000000f,
0x000200f8,0x00000011,0x0004003b,0x00000007,0x00000036,0x00000007,0x0004003b,0x00000007,
0x0000003c,0x00000007,0x0004003b,0x00000007,0x00000041,0x00000007,0x0004003b,0x00000007,
0x00000042,0x00000007,0x0004003b,0x00000007,0x00000044,0x00000007,0x0004003b,0x00000007,
0x00000047,0x00000007,0x0004003b,0x00000007,0x00000053,0x00000007,0x0004003b,0x00000007,
0x0000005b,0x00000007,0x0004003b,0x00000007,0x0000005e,0x00000007,0x0004003b,0x00000007,
0x0000006a,0x00000007,0x0004003b,0x00000007,0x00000071,0x00000007,0x0004003b,0x00000007,
0x00000074,0x00000007,0x0004003b,0x00000084,0x00000085,0x00000007,0x0004003b,0x00000007,
0x0000008e,0x00000007,0x0004003b,0x00000090,0x00000091,0x00000007,0x0004003b,0x00000090,
0x0000009d,0x00000007,0x0004003b,0x00000012,0x000000a0,0x00000007,0x0004003d,0x00000006,
0x00000037,0x0000000f,0x00050041,0x00000026,0x00000039,0x00000023,0x00000038,0x0004003d,
0x00000006,0x0000003a,0x00000039,0x00050086,0x00000006,0x0000003b,0x00000037,0x0000003a,
0x0003003e,0x00000036,0x0000003b,0x0004003d,0x00000006,0x0000003d,0x0000000f,0x00050041,
0x00000026,0x0000003e,0x00000023,0x00000038,0x0004003d,0x00000006,0x0000003f,0x0000003e,
0x00050089,0x00000006,0x00000040,0x0000003d,0x0000003f,0x0003003e,0x0000003c,0x00000040,
0x0004003d,0x00000006,0x00000043,0x00000036,0x0003003e,0x00000042,0x00000043,0x0004003d,
0x00000006,0x00000045,0x0000003c,0x0003003e,0x00000044,0x00000045,0x00060039,0x00000006,
0x00000046,0x0000000b,0x00000042,0x00000044,0x0003003e,0x00000041,0x00000046,0x0004003d,
0x00000006,0x0000004d,0x00000041,0x00050086,0x00000006,0x0000004f,0x0000004d,0x0000004e,
0x00060041,0x00000050,0x00000051,0x0000004b,0x0000004c,0x0000004f,0x0004003d,0x00000006,
0x00000052,0x00000051,0x0003003e,0x00000047,0x00000052,0x0004003d,0x00000006,0x00000054,
0x0000003c,0x000500aa,0x00000056,0x00000057,0x00000054,0x00000055,0x000600a9,0x00000024,
0x00000059,0x00000057,0x00000030,0x00000058,0x0004007c,0x00000006,0x0000005a,0x00000059,
0x0003003e,0x00000053,0x0000005a,0x0004003d,0x00000006,0x0000005c,0x0000003c,0x000500aa,
0x00000056,0x0000005d,0x0000005c,0x00000055,0x000300f7,0x00000060,0x00000000,0x000400fa,
0x0000005d,0x0000005f,0x00000062,0x000200f8,0x0000005f,0x0003003e,0x0000005e,0x00000061,
0x000200f9,0x00000060,0x000200f8,0x00000062,0x0004003d,0x00000006,0x00000063,0x00000053,
0x0004003d,0x00000006,0x00000065,0x0000003c,0x00050082,0x00000006,0x00000066,0x00000064,
0x00000065,0x00050084,0x00000006,0x00000067,0x00000063,0x00000066,0x00050080,0x00000006,
0x00000068,0x00000067,0x00000064,0x0003003e,0x0000005e,0x00000068,0x000200f9,0x00000060,
0x000200f8,0x00000060,0x0004003d,0x00000006,0x00000069,0x0000005e,0x0003003e,0x0000005b,
0x00000069,0x0004003d,0x00000006,0x0000006b,0x0000003c,0x000500aa,0x00000056,0x0000006c,
0x0000006b,0x00000055,0x000600a9,0x00000024,0x0000006f,0x0000006c,0x0000006d,0x0000006e,
0x0004007c,0x00000006,0x00000070,0x0000006f,0x0003003e,0x0000006a,0x00000070,0x0004003d,
0x00000006,0x00000072,0x0000003c,0x000500aa,0x00000056,0x00000073,0x00000072,0x00000055,
0x000300f7,0x00000076,0x00000000,0x000400fa,0x00000073,0x00000075,0x00000078,0x000200f8,
0x00000075,0x0003003e,0x00000074,0x00000077,0x000200f9,0x00000076,0x000200f8,0x00000078,
0x0004003d,0x00000006,0x00000079,0x00000047,0x0004003d,0x00000006,0x0000007a,0x0000005b,
0x000500c2,0x00000006,0x0000007b,0x00000079,0x0000007a,0x0004003d,0x00000006,0x0000007c,
0x0000006a,0x000500c7,0x00000006,0x0000007d,0x0000007b,0x0000007c,0x0003003e,0x00000074,
0x0000007d,0x000200f9,0x00000076,0x000200f8,0x00000076,0x0004003d,0x00000006,0x0000007e,
0x00000074,0x0003003e,0x00000071,0x0000007e,0x0004003d,0x00000006,0x0000007f,0x00000053,
0x000500b0,0x00000056,0x00000081,0x0000007f,0x00000080,0x000300f7,0x00000083,0x00000000,
0x000400fa,0x00000081,0x00000082,0x00000083,0x000200f8,0x00000082,0x0004003d,0x00000006,
0x00000086,0x00000071,0x0004003d,0x00000006,0x00000088,0x00000053,0x00050082,0x00000006,
0x00000089,0x00000088,0x00000077,0x000500c4,0x00000024,0x0000008a,0x00000087,0x00000089,
0x0004007c,0x00000006,0x0000008b,0x0000008a,0x000500c7,0x00000006,0x0000008c,0x00000086,
0x0000008b,0x000500ab,0x00000056,0x0000008d,0x0000008c,0x00000061,0x0003003e,0x00000085,
0x0000008d,0x0004003d,0x00000056,0x0000008f,0x00000085,0x000300f7,0x00000093,0x00000000,
0x000400fa,0x0000008f,0x00000092,0x00000097,0x000200f8,0x00000092,0x0004003d,0x00000006,
0x00000095,0x00000053,0x000500c4,0x00000024,0x00000096,0x00000094,0x00000095,0x0003003e,
0x00000091,0x00000096,0x000200f9,0x00000093,0x000200f8,0x00000097,0x0003003e,0x00000091,
0x0000004c,0x000200f9,0x00000093,0x000200f8,0x00000093,0x0004003d,0x00000024,0x00000098,
0x00000091,0x0004007c,0x00000006,0x00000099,0x00000098,0x0003003e,0x0000008e,0x00000099,
0x0004003d,0x00000006,0x0000009a,0x0000008e,0x0004003d,0x00000006,0x0000009b,0x00000071,
0x000500c5,0x00000006,0x0000009c,0x0000009b,0x0000009a,0x0003003e,0x00000071,0x0000009c,
0x000200f9,0x00000083,0x000200f8,0x00000083,0x0004003d,0x00000006,0x0000009e,0x00000071,
0x0004007c,0x00000024,0x0000009f,0x0000009e,0x0003003e,0x0000009d,0x0000009f,0x0004003d,
0x00000024,0x000000a1,0x0000009d,0x0004006f,0x0000000d,0x000000a2,0x000000a1,0x0004003d,
0x00000006,0x000000a3,0x0000006a,0x000500c2,0x00000006,0x000000a4,0x000000a3,0x00000087,
0x00040070,0x0000000d,0x000000a5,0x000000a4,0x00050088,0x0000000d,0x000000a6,0x000000a2,
0x000000a5,0x0003003e,0x000000a0,0x000000a6,0x0004003d,0x0000000d,0x000000a7,0x000000a0,
0x0007000c,0x0000000d,0x000000a9,0x00000001,0x00000028,0x000000a7,0x000000a8,0x0003003e,
0x000000a0,0x000000a9,0x0004003d,0x0000000d,0x000000aa,0x000000a0,0x000200fe,0x000000aa,
0x00010038,0x00050036,0x0000000d,0x00000015,0x00000000,0x00000013,0x00030037,0x00000012,
0x00000014,0x000200f8,0x00000016,0x0004003d,0x0000000d,0x000000ad,0x00000014,0x000200fe,
0x000000ad,0x00010038,0x00050036,0x00000006,0x0000001a,0x00000000,0x00000017,0x00030037,
0x00000007,0x00000018,0x00030037,0x00000012,0x00000019,0x000200f8,0x0000001b,0x0004003b,
0x00000007,0x000000b0,0x00000007,0x0004003d,0x0000000d,0x000000b1,0x00000019,0x0004007c,
0x00000024,0x000000b2,0x000000b1,0x0004007c,0x00000006,0x000000b3,0x000000b2,0x0003003e,
0x000000b0,0x000000b3,0x0004003d,0x00000006,0x000000b4,0x000000b0,0x000200fe,0x000000b4,
0x00010038,0x00050036,0x00000002,0x0000001e,0x00000000,0x0000001c,0x00030037,0x00000007,
0x0000001d,0x000200f8,0x0000001f,0x00050041,0x000000be,0x000000bf,0x000000bd,0x00000061,
0x0004003d,0x00000006,0x000000c0,0x000000bf,0x00050041,0x00000026,0x000000c1,0x00000023,
0x0000006d,0x0004003d,0x00000006,0x000000c2,0x000000c1,0x00050086,0x00000006,0x000000c3,
0x000000c2,0x0000004e,0x00050080,0x00000006,0x000000c4,0x000000c0,0x000000c3,0x0004003d,
0x00000006,0x000000c5,0x0000001d,0x00060041,0x00000050,0x000000c6,0x000000ba,0x0000004c,
0x000000c4,0x0003003e,0x000000c6,0x000000c5,0x000100fd,0x00010038
};
// Generated from:
......@@ -273,7 +273,8 @@ const uint32_t kConvertVertex_comp_00000027[] = {
// valueAsUint |= signExtension;
// }
// int valueAsInt = int(valueAsUint);
// float value =(2 * float(valueAsInt)+ 1)/ valueMask;
// float value = float(valueAsInt)/(valueMask >> 1);
// value = max(value, float(- 1));
//
// return value;
// }
......
......@@ -285,7 +285,8 @@ SrcType loadSourceComponent(uint cd)
valueAsUint |= signExtension;
}
int valueAsInt = int(valueAsUint);
SrcType value = (2 * float(valueAsInt) + 1) / valueMask;
SrcType value = float(valueAsInt) / (valueMask >> 1);
value = max(value, float(-1));
#elif UnormToFloat || RGB10A2UnormToFloat || RGB10X2UnormToFloat
float positiveMax = valueMask;
// Scale [0, P] to [0, 1]
......
......@@ -92,7 +92,7 @@ void RendererVk::ensureCapsInitialized() const
mNativeExtensions.eglSync = true;
mNativeExtensions.vertexAttribType101010102 = true;
mNativeExtensions.vertexAttribType1010102 = true;
// We use secondary command buffers almost everywhere and they require a feature to be
// able to execute in the presence of queries. As a result, we won't support queries
......
......@@ -100,9 +100,15 @@ GLfloat Normalize2(T value)
{
static_assert(std::is_integral<T>::value, "Integer required.");
if (std::is_signed<T>::value)
return static_cast<float>(value * 2 + 1) / 3.0f;
{
GLfloat outputValue = static_cast<float>(value) / 1.0f;
outputValue = (outputValue >= -1.0f) ? (outputValue) : (-1.0f);
return outputValue;
}
else
{
return static_cast<float>(value) / 3.0f;
}
}
template <typename DestT, typename SrcT>
......@@ -792,6 +798,8 @@ TEST_P(VertexAttributeTest, SignedPacked1010102ExtensionNormalized)
expectedNormalizedTypeSize4[i * 4 + 3] = Normalize2<GLshort>(unpackedInput[i][3]);
}
TestData data4(GL_INT_10_10_10_2_OES, GL_TRUE, Source::IMMEDIATE, packedInput.data(),
expectedNormalizedTypeSize4.data());
TestData bufferedData4(GL_INT_10_10_10_2_OES, GL_TRUE, Source::BUFFER, packedInput.data(),
expectedNormalizedTypeSize4.data());
TestData data3(GL_INT_10_10_10_2_OES, GL_TRUE, Source::IMMEDIATE, packedInput.data(),
......@@ -799,8 +807,8 @@ TEST_P(VertexAttributeTest, SignedPacked1010102ExtensionNormalized)
TestData bufferedData3(GL_INT_10_10_10_2_OES, GL_TRUE, Source::BUFFER, packedInput.data(),
expectedNormalizedTypeSize3.data());
std::array<std::pair<const TestData &, GLint>, 3> dataSet = {
{{bufferedData4, 4}, {data3, 3}, {bufferedData3, 3}}};
std::array<std::pair<const TestData &, GLint>, 4> dataSet = {
{{data4, 4}, {bufferedData4, 4}, {data3, 3}, {bufferedData3, 3}}};
for (auto data : dataSet)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment