Commit f8b28678 by Xiaoxuan Liu Committed by Commit Bot

Vulkan: Add support for VK_EXT_index_type_uint8

Enable VK_EXT_index_type_uint8 Vulkan extension if supported by VkDevice. Bug: angleproject:4405 Change-Id: I84d030497898c5944a36d9a88a31e7377ccd5e9e Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2082391 Commit-Queue: Xiaoxuan Liu <xiaoxuan.liu@arm.com> Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent c3655c3a
......@@ -153,6 +153,12 @@ struct FeaturesVk : FeatureSetBase
"Transform feedback uses the VK_EXT_transform_feedback extension.", &members,
"http://anglebug.com/3206"};
// Whether the VkDevice supports the VK_EXT_index_type_uint8 extension
// http://anglebug.com/4405
Feature supportsIndexTypeUint8 = {"supports_index_type_uint8", FeatureCategory::VulkanFeatures,
"VkDevice supports the VK_EXT_index_type_uint8 extension",
&members, "http://anglebug.com/4405"};
// VK_PRESENT_MODE_FIFO_KHR causes random timeouts on Linux Intel. http://anglebug.com/3153
Feature disableFifoPresentMode = {
"disable_fifo_present_mode", FeatureCategory::VulkanWorkarounds,
......
......@@ -90,9 +90,11 @@
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndex.comp.00000003.inc":
"0d3eb0f82f328837ef4c0fe5f978ef3f",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndexIndirectLineLoop.comp.00000000.inc":
"76d8265a6ccec813fb7f7ad1b503947e",
"bb07b6941cee943efaf627da12fab504",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndexIndirectLineLoop.comp.00000001.inc":
"a1964fd9d0b75701a384a11ac23242fb",
"48de7900fe4d96446a61abcb1b86f0ca",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndexIndirectLineLoop.comp.00000002.inc":
"53475dec809dddaf902dd12253acba19",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndirectLineLoop.comp.00000000.inc":
"523d3207d424614197ace9601ce56950",
"src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000000.inc":
......@@ -240,7 +242,7 @@
"src/libANGLE/renderer/vulkan/shaders/src/ConvertIndex.comp":
"a46b48d7d5b19c74eb377f275525ab8d",
"src/libANGLE/renderer/vulkan/shaders/src/ConvertIndexIndirectLineLoop.comp":
"63418a915d0a63a26c17fea3091cd42d",
"ee94f2dab39583c17cb5739199229427",
"src/libANGLE/renderer/vulkan/shaders/src/ConvertIndirectLineLoop.comp":
"c4fe0f463b41cd59bae33f9711e0b67b",
"src/libANGLE/renderer/vulkan/shaders/src/ConvertVertex.comp":
......@@ -256,9 +258,9 @@
"src/libANGLE/renderer/vulkan/shaders/src/OverlayDraw.comp":
"dcc246b398b2e07a869a264666499362",
"src/libANGLE/renderer/vulkan/vk_internal_shaders_autogen.cpp":
"7e0bc36d24abb773260a7bbd47b9d1d0",
"7a38442f63d6fb7b931390d3776cc964",
"src/libANGLE/renderer/vulkan/vk_internal_shaders_autogen.h":
"350020dbc136ae8cc67455694ed13f31",
"3eea961399cc31bedac5128770d5175d",
"tools/glslang/glslang_validator.exe.sha1":
"289f30598865a987a21b79ae525fc66f",
"tools/glslang/glslang_validator.sha1":
......
......@@ -761,6 +761,9 @@ angle::Result ContextVk::initialize()
vk::kDefaultTimestampQueryPoolSize));
}
// Init gles to vulkan index type map
initIndexTypeMap();
// Init driver uniforms and get the descriptor set layouts.
constexpr angle::PackedEnumMap<PipelineType, VkShaderStageFlags> kPipelineStages = {
{PipelineType::Graphics, VK_SHADER_STAGE_ALL_GRAPHICS},
......@@ -954,9 +957,7 @@ angle::Result ContextVk::setupIndexedDraw(const gl::Context *context,
mLastIndexBufferOffset = indices;
mVertexArray->updateCurrentElementArrayBufferOffset(mLastIndexBufferOffset);
}
if (indexType == gl::DrawElementsType::UnsignedByte &&
mGraphicsDirtyBits[DIRTY_BIT_INDEX_BUFFER])
if (shouldConvertUint8VkIndexType(indexType) && mGraphicsDirtyBits[DIRTY_BIT_INDEX_BUFFER])
{
BufferVk *bufferVk = vk::GetImpl(elementArrayBuffer);
vk::BufferHelper &bufferHelper = bufferVk->getBuffer();
......@@ -1298,7 +1299,7 @@ angle::Result ContextVk::handleDirtyGraphicsIndexBuffer(const gl::Context *conte
commandBuffer->bindIndexBuffer(elementArrayBuffer->getBuffer(),
mVertexArray->getCurrentElementArrayBufferOffset(),
gl_vk::kIndexTypeMap[mCurrentDrawElementsType]);
getVkIndexType(mCurrentDrawElementsType));
mRenderPassCommands.bufferRead(&mResourceUseList, VK_ACCESS_INDEX_READ_BIT, elementArrayBuffer);
......@@ -2122,7 +2123,7 @@ angle::Result ContextVk::drawElementsIndirect(const gl::Context *context,
return angle::Result::Continue;
}
if (type == gl::DrawElementsType::UnsignedByte && mGraphicsDirtyBits[DIRTY_BIT_INDEX_BUFFER])
if (shouldConvertUint8VkIndexType(type) && mGraphicsDirtyBits[DIRTY_BIT_INDEX_BUFFER])
{
vk::BufferHelper *dstIndirectBuf;
VkDeviceSize dstIndirectBufOffset;
......@@ -4055,6 +4056,38 @@ void ContextVk::dumpCommandStreamDiagnostics()
out << "}\n";
}
void ContextVk::initIndexTypeMap()
{
// Init gles-vulkan index type map
mIndexTypeMap[gl::DrawElementsType::UnsignedByte] =
mRenderer->getFeatures().supportsIndexTypeUint8.enabled ? VK_INDEX_TYPE_UINT8_EXT
: VK_INDEX_TYPE_UINT16;
mIndexTypeMap[gl::DrawElementsType::UnsignedShort] = VK_INDEX_TYPE_UINT16;
mIndexTypeMap[gl::DrawElementsType::UnsignedInt] = VK_INDEX_TYPE_UINT32;
}
VkIndexType ContextVk::getVkIndexType(gl::DrawElementsType glIndexType) const
{
return mIndexTypeMap[glIndexType];
}
size_t ContextVk::getVkIndexTypeSize(gl::DrawElementsType glIndexType) const
{
gl::DrawElementsType elementsType = shouldConvertUint8VkIndexType(glIndexType)
? gl::DrawElementsType::UnsignedShort
: glIndexType;
ASSERT(elementsType < gl::DrawElementsType::EnumCount);
// Use GetDrawElementsTypeSize() to get the size
return static_cast<size_t>(gl::GetDrawElementsTypeSize(elementsType));
}
bool ContextVk::shouldConvertUint8VkIndexType(gl::DrawElementsType glIndexType) const
{
return (glIndexType == gl::DrawElementsType::UnsignedByte &&
!mRenderer->getFeatures().supportsIndexTypeUint8.enabled);
}
CommandBufferHelper::CommandBufferHelper()
: mImageBarrierSrcStageMask(0),
mImageBarrierDstStageMask(0),
......
......@@ -650,6 +650,10 @@ class ContextVk : public ContextImpl, public vk::Context
void addCommandBufferDiagnostics(const std::string &commandBufferDiagnostics);
VkIndexType getVkIndexType(gl::DrawElementsType glIndexType) const;
size_t getVkIndexTypeSize(gl::DrawElementsType glIndexType) const;
bool shouldConvertUint8VkIndexType(gl::DrawElementsType glIndexType) const;
private:
// Dirty bits.
enum DirtyBitType : size_t
......@@ -905,6 +909,8 @@ class ContextVk : public ContextImpl, public vk::Context
ANGLE_INLINE void onRenderPassFinished() { mRenderPassCommandBuffer = nullptr; }
void initIndexTypeMap();
std::array<DirtyBitHandler, DIRTY_BIT_MAX> mGraphicsDirtyBitHandlers;
std::array<DirtyBitHandler, DIRTY_BIT_MAX> mComputeDirtyBitHandlers;
......@@ -951,6 +957,7 @@ class ContextVk : public ContextImpl, public vk::Context
// The offset we had the last time we bound the index buffer.
const GLvoid *mLastIndexBufferOffset;
gl::DrawElementsType mCurrentDrawElementsType;
angle::PackedEnumMap<gl::DrawElementsType, VkIndexType> mIndexTypeMap;
// Cache the current draw call's firstVertex to be passed to
// TransformFeedbackVk::getBufferOffsets. Unfortunately, gl_BaseVertex support in Vulkan is
......
......@@ -962,6 +962,9 @@ void RendererVk::queryDeviceExtensionFeatures(const ExtensionNameList &deviceExt
mTransformFeedbackFeatures.sType =
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_FEATURES_EXT;
mIndexTypeUint8Features = {};
mIndexTypeUint8Features.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INDEX_TYPE_UINT8_FEATURES_EXT;
mPhysicalDeviceSubgroupProperties = {};
mPhysicalDeviceSubgroupProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_PROPERTIES;
......@@ -1006,6 +1009,12 @@ void RendererVk::queryDeviceExtensionFeatures(const ExtensionNameList &deviceExt
vk::AddToPNextChain(&deviceFeatures, &mTransformFeedbackFeatures);
}
// Query uint8 index type features
if (ExtensionFound(VK_EXT_INDEX_TYPE_UINT8_EXTENSION_NAME, deviceExtensionNames))
{
vk::AddToPNextChain(&deviceFeatures, &mIndexTypeUint8Features);
}
// Query external memory host properties
if (ExtensionFound(VK_EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME, deviceExtensionNames))
{
......@@ -1024,6 +1033,7 @@ void RendererVk::queryDeviceExtensionFeatures(const ExtensionNameList &deviceExt
mVertexAttributeDivisorFeatures.pNext = nullptr;
mVertexAttributeDivisorProperties.pNext = nullptr;
mTransformFeedbackFeatures.pNext = nullptr;
mIndexTypeUint8Features.pNext = nullptr;
mPhysicalDeviceSubgroupProperties.pNext = nullptr;
mPhysicalDeviceExternalMemoryHostProperties.pNext = nullptr;
}
......@@ -1259,6 +1269,12 @@ angle::Result RendererVk::initializeDevice(DisplayVk *displayVk, uint32_t queueF
vk::AddToPNextChain(&createInfo, &mTransformFeedbackFeatures);
}
if (getFeatures().supportsIndexTypeUint8.enabled)
{
enabledDeviceExtensions.push_back(VK_EXT_INDEX_TYPE_UINT8_EXTENSION_NAME);
vk::AddToPNextChain(&createInfo, &mIndexTypeUint8Features);
}
if (getFeatures().supportsExternalMemoryHost.enabled)
{
enabledDeviceExtensions.push_back(VK_EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME);
......@@ -1612,6 +1628,9 @@ void RendererVk::initFeatures(DisplayVk *displayVk, const ExtensionNameList &dev
ANGLE_FEATURE_CONDITION((&mFeatures), supportsTransformFeedbackExtension,
mTransformFeedbackFeatures.transformFeedback == VK_TRUE);
ANGLE_FEATURE_CONDITION((&mFeatures), supportsIndexTypeUint8,
mIndexTypeUint8Features.indexTypeUint8 == VK_TRUE);
ANGLE_FEATURE_CONDITION((&mFeatures), emulateTransformFeedback,
(mFeatures.supportsTransformFeedbackExtension.enabled == VK_FALSE &&
mPhysicalDeviceFeatures.vertexPipelineStoresAndAtomics == VK_TRUE));
......
......@@ -287,6 +287,7 @@ class RendererVk : angle::NonCopyable
VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT mVertexAttributeDivisorFeatures;
VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT mVertexAttributeDivisorProperties;
VkPhysicalDeviceTransformFeedbackFeaturesEXT mTransformFeedbackFeatures;
VkPhysicalDeviceIndexTypeUint8FeaturesEXT mIndexTypeUint8Features;
VkPhysicalDeviceSubgroupProperties mPhysicalDeviceSubgroupProperties;
VkPhysicalDeviceExternalMemoryHostPropertiesEXT mPhysicalDeviceExternalMemoryHostProperties;
std::vector<VkQueueFamilyProperties> mQueueFamilyProperties;
......
......@@ -17,14 +17,15 @@
namespace rx
{
namespace BufferUtils_comp = vk::InternalShader::BufferUtils_comp;
namespace ConvertVertex_comp = vk::InternalShader::ConvertVertex_comp;
namespace ImageClear_frag = vk::InternalShader::ImageClear_frag;
namespace ImageCopy_frag = vk::InternalShader::ImageCopy_frag;
namespace BlitResolve_frag = vk::InternalShader::BlitResolve_frag;
namespace BlitResolveStencilNoExport_comp = vk::InternalShader::BlitResolveStencilNoExport_comp;
namespace OverlayCull_comp = vk::InternalShader::OverlayCull_comp;
namespace OverlayDraw_comp = vk::InternalShader::OverlayDraw_comp;
namespace BufferUtils_comp = vk::InternalShader::BufferUtils_comp;
namespace ConvertVertex_comp = vk::InternalShader::ConvertVertex_comp;
namespace ImageClear_frag = vk::InternalShader::ImageClear_frag;
namespace ImageCopy_frag = vk::InternalShader::ImageCopy_frag;
namespace BlitResolve_frag = vk::InternalShader::BlitResolve_frag;
namespace BlitResolveStencilNoExport_comp = vk::InternalShader::BlitResolveStencilNoExport_comp;
namespace OverlayCull_comp = vk::InternalShader::OverlayCull_comp;
namespace OverlayDraw_comp = vk::InternalShader::OverlayDraw_comp;
namespace ConvertIndexIndirectLineLoop_comp = vk::InternalShader::ConvertIndexIndirectLineLoop_comp;
namespace
{
......@@ -297,6 +298,22 @@ uint32_t GetBlitResolveFlags(bool blitColor,
}
}
uint32_t GetConvertIndexIndirectLineLoopFlag(uint32_t indicesBitsWidth)
{
switch (indicesBitsWidth)
{
case 8:
return ConvertIndexIndirectLineLoop_comp::kIs8Bits;
case 16:
return ConvertIndexIndirectLineLoop_comp::kIs16Bits;
case 32:
return ConvertIndexIndirectLineLoop_comp::kIs32Bits;
default:
UNREACHABLE();
return 0;
}
}
uint32_t GetFormatDefaultChannelMask(const vk::Format &format)
{
uint32_t mask = 0;
......@@ -990,11 +1007,7 @@ angle::Result UtilsVk::convertLineLoopIndexIndirectBuffer(
params.indirectBufferOffset >> 2, params.dstIndirectBufferOffset >> 2,
params.dstIndexBufferOffset >> 2, contextVk->getState().isPrimitiveRestartEnabled()};
uint32_t flags = 0;
if (params.is32Bit)
{
flags |= vk::InternalShader::ConvertIndexIndirectLineLoop_comp::kIs32Bit;
}
uint32_t flags = GetConvertIndexIndirectLineLoopFlag(params.indicesBitsWidth);
vk::RefCounted<vk::ShaderAndSerial> *shader = nullptr;
ANGLE_TRY(contextVk->getShaderLibrary().getConvertIndexIndirectLineLoop_comp(contextVk, flags,
......
......@@ -67,7 +67,7 @@ class UtilsVk : angle::NonCopyable
uint32_t indirectBufferOffset = 0;
uint32_t dstIndirectBufferOffset = 0;
uint32_t dstIndexBufferOffset = 0;
uint32_t is32Bit = 0;
uint32_t indicesBitsWidth = 0;
};
struct ConvertLineLoopArrayIndirectParameters
......
......@@ -296,21 +296,14 @@ angle::Result VertexArrayVk::convertIndexBufferCPU(ContextVk *contextVk,
mDynamicIndexData.releaseInFlightBuffers(contextVk);
size_t elementSize = gl::GetDrawElementsTypeSize(indexType);
if (indexType == gl::DrawElementsType::UnsignedByte)
{
// 8-bit indices are not supported by Vulkan, so they are promoted to
// 16-bit indices below
elementSize = sizeof(GLushort);
}
size_t elementSize = contextVk->getVkIndexTypeSize(indexType);
const size_t amount = elementSize * indexCount;
GLubyte *dst = nullptr;
ANGLE_TRY(mDynamicIndexData.allocate(contextVk, amount, &dst, nullptr,
&mCurrentElementArrayBufferOffset, nullptr));
mCurrentElementArrayBuffer = mDynamicIndexData.getCurrentBuffer();
if (indexType == gl::DrawElementsType::UnsignedByte)
if (contextVk->shouldConvertUint8VkIndexType(indexType))
{
// Unsigned bytes don't have direct support in Vulkan so we have to expand the
// memory to a GLushort.
......
// 7.12.3226
#pragma once
const uint32_t kConvertIndexIndirectLineLoop_comp_00000000[] = {
0x07230203,0x00010000,0x00080007,0x000000ee,0x00000000,0x00020011,0x00000001,0x0006000b,
0x07230203,0x00010000,0x00080007,0x000000eb,0x00000000,0x00020011,0x00000001,0x0006000b,
0x00000001,0x4c534c47,0x6474732e,0x3035342e,0x00000000,0x0003000e,0x00000000,0x00000001,
0x0006000f,0x00000005,0x00000004,0x6e69616d,0x00000000,0x0000006b,0x00060010,0x00000004,
0x0006000f,0x00000005,0x00000004,0x6e69616d,0x00000000,0x00000068,0x00060010,0x00000004,
0x00000011,0x00000040,0x00000001,0x00000001,0x00030003,0x00000002,0x000001c2,0x00040005,
0x00000004,0x6e69616d,0x00000000,0x00070005,0x0000000a,0x49746547,0x7865646e,0x756c6156,
0x31752865,0x0000003b,0x00040005,0x00000009,0x65646e69,0x00000078,0x00080005,0x0000000f,
......@@ -11,194 +11,191 @@ const uint32_t kConvertIndexIndirectLineLoop_comp_00000000[] = {
0x65646e69,0x00000078,0x00040005,0x0000000e,0x756c6176,0x00000065,0x00050005,0x00000011,
0x42637273,0x6b636f6c,0x00000000,0x00030005,0x00000013,0x00637273,0x00050006,0x00000013,
0x00000000,0x44637273,0x00617461,0x00030005,0x00000015,0x00000000,0x00050005,0x0000001e,
0x53637273,0x74666968,0x00000000,0x00040005,0x00000024,0x4d637273,0x006b7361,0x00040005,
0x00000026,0x756c6176,0x00000065,0x00050005,0x0000002f,0x49747364,0x7865646e,0x00000000,
0x00060005,0x00000030,0x68737550,0x736e6f43,0x746e6174,0x00000073,0x00070006,0x00000030,
0x00000000,0x4f646d63,0x65736666,0x76694474,0x00000034,0x00080006,0x00000030,0x00000001,
0x43747364,0x664f646d,0x74657366,0x34766944,0x00000000,0x00070006,0x00000030,0x00000002,
0x4f747364,0x65736666,0x76694474,0x00000034,0x00080006,0x00000030,0x00000003,0x65527369,
0x72617473,0x616e4574,0x64656c62,0x00000000,0x00030005,0x00000032,0x00000000,0x00050005,
0x0000003a,0x42637273,0x6b636f6c,0x00000000,0x00030005,0x0000003c,0x00747364,0x00050006,
0x0000003c,0x00000000,0x44747364,0x00617461,0x00030005,0x0000003e,0x00000000,0x00050005,
0x00000042,0x53637273,0x74666968,0x00000000,0x00040005,0x00000046,0x4d637273,0x006b7361,
0x00050005,0x00000055,0x65646e69,0x756f4378,0x0000746e,0x00030005,0x00000057,0x00646d63,
0x00050006,0x00000057,0x00000000,0x44646d63,0x00617461,0x00030005,0x00000059,0x00000000,
0x00050005,0x0000005e,0x73726966,0x646e4974,0x00007865,0x00050005,0x00000065,0x49646e65,
0x7865646e,0x00000000,0x00080005,0x0000006b,0x475f6c67,0x61626f6c,0x766e496c,0x7461636f,
0x496e6f69,0x00000044,0x00060005,0x00000075,0x6b726f77,0x43676e69,0x746e756f,0x00000000,
0x00040005,0x00000076,0x49637273,0x00007864,0x00070005,0x00000078,0x69646e69,0x52736563,
0x69616d65,0x676e696e,0x00000000,0x00050005,0x0000007a,0x656e696c,0x657a6953,0x00000000,
0x00060005,0x0000007b,0x73726966,0x646e4974,0x61567865,0x0065756c,0x00060005,0x00000083,
0x74736572,0x56747261,0x65756c61,0x00000000,0x00050005,0x00000084,0x65646e69,0x6c615678,
0x00006575,0x00040005,0x00000087,0x61726170,0x0000006d,0x00040005,0x000000a0,0x61726170,
0x0000006d,0x00040005,0x000000a1,0x61726170,0x0000006d,0x00040005,0x000000aa,0x61726170,
0x0000006d,0x00040005,0x000000ab,0x61726170,0x0000006d,0x00040005,0x000000af,0x61726170,
0x0000006d,0x00040005,0x000000b1,0x61726170,0x0000006d,0x00040005,0x000000bc,0x61726170,
0x0000006d,0x00040005,0x000000be,0x61726170,0x0000006d,0x00040005,0x000000c4,0x43747364,
0x0000646d,0x00060006,0x000000c4,0x00000000,0x43747364,0x6144646d,0x00006174,0x00030005,
0x000000c6,0x00000000,0x00040047,0x00000012,0x00000006,0x00000004,0x00040048,0x00000013,
0x53637273,0x74666968,0x00000000,0x00040005,0x00000024,0x756c6176,0x00000065,0x00050005,
0x0000002d,0x49747364,0x7865646e,0x00000000,0x00060005,0x0000002e,0x68737550,0x736e6f43,
0x746e6174,0x00000073,0x00070006,0x0000002e,0x00000000,0x4f646d63,0x65736666,0x76694474,
0x00000034,0x00080006,0x0000002e,0x00000001,0x43747364,0x664f646d,0x74657366,0x34766944,
0x00000000,0x00070006,0x0000002e,0x00000002,0x4f747364,0x65736666,0x76694474,0x00000034,
0x00080006,0x0000002e,0x00000003,0x65527369,0x72617473,0x616e4574,0x64656c62,0x00000000,
0x00030005,0x00000030,0x00000000,0x00050005,0x00000037,0x42637273,0x6b636f6c,0x00000000,
0x00030005,0x00000039,0x00747364,0x00050006,0x00000039,0x00000000,0x44747364,0x00617461,
0x00030005,0x0000003b,0x00000000,0x00050005,0x0000003f,0x53637273,0x74666968,0x00000000,
0x00050005,0x00000052,0x65646e69,0x756f4378,0x0000746e,0x00030005,0x00000054,0x00646d63,
0x00050006,0x00000054,0x00000000,0x44646d63,0x00617461,0x00030005,0x00000056,0x00000000,
0x00050005,0x0000005b,0x73726966,0x646e4974,0x00007865,0x00050005,0x00000062,0x49646e65,
0x7865646e,0x00000000,0x00080005,0x00000068,0x475f6c67,0x61626f6c,0x766e496c,0x7461636f,
0x496e6f69,0x00000044,0x00060005,0x00000073,0x6b726f77,0x43676e69,0x746e756f,0x00000000,
0x00040005,0x00000074,0x49637273,0x00007864,0x00070005,0x00000076,0x69646e69,0x52736563,
0x69616d65,0x676e696e,0x00000000,0x00050005,0x00000078,0x656e696c,0x657a6953,0x00000000,
0x00060005,0x00000079,0x73726966,0x646e4974,0x61567865,0x0065756c,0x00060005,0x00000081,
0x74736572,0x56747261,0x65756c61,0x00000000,0x00050005,0x00000082,0x65646e69,0x6c615678,
0x00006575,0x00040005,0x00000086,0x61726170,0x0000006d,0x00040005,0x0000009e,0x61726170,
0x0000006d,0x00040005,0x0000009f,0x61726170,0x0000006d,0x00040005,0x000000a8,0x61726170,
0x0000006d,0x00040005,0x000000a9,0x61726170,0x0000006d,0x00040005,0x000000ad,0x61726170,
0x0000006d,0x00040005,0x000000af,0x61726170,0x0000006d,0x00040005,0x000000ba,0x61726170,
0x0000006d,0x00040005,0x000000bc,0x61726170,0x0000006d,0x00040005,0x000000c2,0x43747364,
0x0000646d,0x00060006,0x000000c2,0x00000000,0x43747364,0x6144646d,0x00006174,0x00030005,
0x000000c4,0x00000000,0x00040047,0x00000012,0x00000006,0x00000004,0x00040048,0x00000013,
0x00000000,0x00000018,0x00050048,0x00000013,0x00000000,0x00000023,0x00000000,0x00030047,
0x00000013,0x00000003,0x00040047,0x00000015,0x00000022,0x00000000,0x00040047,0x00000015,
0x00000021,0x00000001,0x00050048,0x00000030,0x00000000,0x00000023,0x00000000,0x00050048,
0x00000030,0x00000001,0x00000023,0x00000004,0x00050048,0x00000030,0x00000002,0x00000023,
0x00000008,0x00050048,0x00000030,0x00000003,0x00000023,0x0000000c,0x00030047,0x00000030,
0x00000002,0x00040047,0x0000003b,0x00000006,0x00000004,0x00050048,0x0000003c,0x00000000,
0x00000023,0x00000000,0x00030047,0x0000003c,0x00000003,0x00040047,0x0000003e,0x00000022,
0x00000000,0x00040047,0x0000003e,0x00000021,0x00000000,0x00040047,0x00000056,0x00000006,
0x00000004,0x00040048,0x00000057,0x00000000,0x00000018,0x00050048,0x00000057,0x00000000,
0x00000023,0x00000000,0x00030047,0x00000057,0x00000003,0x00040047,0x00000059,0x00000022,
0x00000000,0x00040047,0x00000059,0x00000021,0x00000002,0x00040047,0x0000006b,0x0000000b,
0x0000001c,0x00040047,0x000000c3,0x00000006,0x00000004,0x00050048,0x000000c4,0x00000000,
0x00000023,0x00000000,0x00030047,0x000000c4,0x00000003,0x00040047,0x000000c6,0x00000022,
0x00000000,0x00040047,0x000000c6,0x00000021,0x00000003,0x00040047,0x000000ed,0x0000000b,
0x00000021,0x00000001,0x00050048,0x0000002e,0x00000000,0x00000023,0x00000000,0x00050048,
0x0000002e,0x00000001,0x00000023,0x00000004,0x00050048,0x0000002e,0x00000002,0x00000023,
0x00000008,0x00050048,0x0000002e,0x00000003,0x00000023,0x0000000c,0x00030047,0x0000002e,
0x00000002,0x00040047,0x00000038,0x00000006,0x00000004,0x00050048,0x00000039,0x00000000,
0x00000023,0x00000000,0x00030047,0x00000039,0x00000003,0x00040047,0x0000003b,0x00000022,
0x00000000,0x00040047,0x0000003b,0x00000021,0x00000000,0x00040047,0x00000053,0x00000006,
0x00000004,0x00040048,0x00000054,0x00000000,0x00000018,0x00050048,0x00000054,0x00000000,
0x00000023,0x00000000,0x00030047,0x00000054,0x00000003,0x00040047,0x00000056,0x00000022,
0x00000000,0x00040047,0x00000056,0x00000021,0x00000002,0x00040047,0x00000068,0x0000000b,
0x0000001c,0x00040047,0x000000c1,0x00000006,0x00000004,0x00050048,0x000000c2,0x00000000,
0x00000023,0x00000000,0x00030047,0x000000c2,0x00000003,0x00040047,0x000000c4,0x00000022,
0x00000000,0x00040047,0x000000c4,0x00000021,0x00000003,0x00040047,0x000000ea,0x0000000b,
0x00000019,0x00020013,0x00000002,0x00030021,0x00000003,0x00000002,0x00040015,0x00000006,
0x00000020,0x00000000,0x00040020,0x00000007,0x00000007,0x00000006,0x00040021,0x00000008,
0x00000006,0x00000007,0x00050021,0x0000000c,0x00000002,0x00000007,0x00000007,0x0003001d,
0x00000012,0x00000006,0x0003001e,0x00000013,0x00000012,0x00040020,0x00000014,0x00000002,
0x00000013,0x0004003b,0x00000014,0x00000015,0x00000002,0x00040015,0x00000016,0x00000020,
0x00000001,0x0004002b,0x00000016,0x00000017,0x00000000,0x0004002b,0x00000016,0x00000019,
0x00000001,0x00040020,0x0000001b,0x00000002,0x00000006,0x0004002b,0x00000006,0x00000020,
0x00000001,0x0004002b,0x00000016,0x00000022,0x00000004,0x0004002b,0x00000006,0x00000025,
0x0000ffff,0x0006001e,0x00000030,0x00000006,0x00000006,0x00000006,0x00000006,0x00040020,
0x00000031,0x00000009,0x00000030,0x0004003b,0x00000031,0x00000032,0x00000009,0x0004002b,
0x00000016,0x00000033,0x00000002,0x00040020,0x00000034,0x00000009,0x00000006,0x0003001d,
0x0000003b,0x00000006,0x0003001e,0x0000003c,0x0000003b,0x00040020,0x0000003d,0x00000002,
0x0000003c,0x0004003b,0x0000003d,0x0000003e,0x00000002,0x0003001d,0x00000056,0x00000006,
0x0003001e,0x00000057,0x00000056,0x00040020,0x00000058,0x00000002,0x00000057,0x0004003b,
0x00000058,0x00000059,0x00000002,0x0004002b,0x00000006,0x00000061,0x00000002,0x00040017,
0x00000069,0x00000006,0x00000003,0x00040020,0x0000006a,0x00000001,0x00000069,0x0004003b,
0x0000006a,0x0000006b,0x00000001,0x0004002b,0x00000006,0x0000006c,0x00000000,0x00040020,
0x0000006d,0x00000001,0x00000006,0x00020014,0x00000070,0x0004002b,0x00000016,0x00000090,
0x00000003,0x0003001d,0x000000c3,0x00000006,0x0003001e,0x000000c4,0x000000c3,0x00040020,
0x000000c5,0x00000002,0x000000c4,0x0004003b,0x000000c5,0x000000c6,0x00000002,0x0004002b,
0x00000006,0x000000da,0x00000003,0x0004002b,0x00000006,0x000000e4,0x00000004,0x0004002b,
0x00000006,0x000000ec,0x00000040,0x0006002c,0x00000069,0x000000ed,0x000000ec,0x00000020,
0x00000020,0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,
0x0004003b,0x00000007,0x00000055,0x00000007,0x0004003b,0x00000007,0x0000005e,0x00000007,
0x0004003b,0x00000007,0x00000065,0x00000007,0x0004003b,0x00000007,0x00000075,0x00000007,
0x0004003b,0x00000007,0x00000076,0x00000007,0x0004003b,0x00000007,0x00000078,0x00000007,
0x0004003b,0x00000007,0x0000007a,0x00000007,0x0004003b,0x00000007,0x0000007b,0x00000007,
0x0004003b,0x00000007,0x00000083,0x00000007,0x0004003b,0x00000007,0x00000084,0x00000007,
0x0004003b,0x00000007,0x00000087,0x00000007,0x0004003b,0x00000007,0x000000a0,0x00000007,
0x0004003b,0x00000007,0x000000a1,0x00000007,0x0004003b,0x00000007,0x000000aa,0x00000007,
0x0004003b,0x00000007,0x000000ab,0x00000007,0x0004003b,0x00000007,0x000000af,0x00000007,
0x0004003b,0x00000007,0x000000b1,0x00000007,0x0004003b,0x00000007,0x000000bc,0x00000007,
0x0004003b,0x00000007,0x000000be,0x00000007,0x00050041,0x00000034,0x0000005a,0x00000032,
0x00000017,0x0004003d,0x00000006,0x0000005b,0x0000005a,0x00060041,0x0000001b,0x0000005c,
0x00000059,0x00000017,0x0000005b,0x0004003d,0x00000006,0x0000005d,0x0000005c,0x0003003e,
0x00000055,0x0000005d,0x00050041,0x00000034,0x0000005f,0x00000032,0x00000017,0x0004003d,
0x00000006,0x00000060,0x0000005f,0x00050080,0x00000006,0x00000062,0x00000060,0x00000061,
0x00060041,0x0000001b,0x00000063,0x00000059,0x00000017,0x00000062,0x0004003d,0x00000006,
0x00000064,0x00000063,0x0003003e,0x0000005e,0x00000064,0x0004003d,0x00000006,0x00000066,
0x0000005e,0x0004003d,0x00000006,0x00000067,0x00000055,0x00050080,0x00000006,0x00000068,
0x00000066,0x00000067,0x0003003e,0x00000065,0x00000068,0x00050041,0x0000006d,0x0000006e,
0x0000006b,0x0000006c,0x0004003d,0x00000006,0x0000006f,0x0000006e,0x000500ae,0x00000070,
0x00000071,0x0000006f,0x00000020,0x000300f7,0x00000073,0x00000000,0x000400fa,0x00000071,
0x00000072,0x00000073,0x000200f8,0x00000072,0x000100fd,0x000200f8,0x00000073,0x0003003e,
0x00000075,0x0000006c,0x0004003d,0x00000006,0x00000077,0x0000005e,0x0003003e,0x00000076,
0x00000077,0x0004003d,0x00000006,0x00000079,0x00000055,0x0003003e,0x00000078,0x00000079,
0x0003003e,0x0000007a,0x0000006c,0x0003003e,0x0000007b,0x0000006c,0x000200f9,0x0000007c,
0x000200f8,0x0000007c,0x000400f6,0x0000007e,0x0000007f,0x00000000,0x000200f9,0x00000080,
0x000200f8,0x00000080,0x0004003d,0x00000006,0x00000081,0x00000078,0x000500ac,0x00000070,
0x00000082,0x00000081,0x0000006c,0x000400fa,0x00000082,0x0000007d,0x0000007e,0x000200f8,
0x0000007d,0x0003003e,0x00000083,0x00000025,0x0004003d,0x00000006,0x00000085,0x00000076,
0x00050080,0x00000006,0x00000086,0x00000085,0x00000019,0x0003003e,0x00000076,0x00000086,
0x0003003e,0x00000087,0x00000085,0x00050039,0x00000006,0x00000088,0x0000000a,0x00000087,
0x0003003e,0x00000084,0x00000088,0x0004003d,0x00000006,0x00000089,0x0000007a,0x000500aa,
0x00000070,0x0000008a,0x00000089,0x0000006c,0x000300f7,0x0000008c,0x00000000,0x000400fa,
0x0000008a,0x0000008b,0x0000008c,0x000200f8,0x0000008b,0x0004003d,0x00000006,0x0000008d,
0x00000084,0x0003003e,0x0000007b,0x0000008d,0x000200f9,0x0000008c,0x000200f8,0x0000008c,
0x0004003d,0x00000006,0x0000008e,0x00000078,0x00050082,0x00000006,0x0000008f,0x0000008e,
0x00000019,0x0003003e,0x00000078,0x0000008f,0x00050041,0x00000034,0x00000091,0x00000032,
0x00000090,0x0004003d,0x00000006,0x00000092,0x00000091,0x000500aa,0x00000070,0x00000093,
0x00000092,0x00000020,0x0004003d,0x00000006,0x00000094,0x00000084,0x0004003d,0x00000006,
0x00000095,0x00000083,0x000500aa,0x00000070,0x00000096,0x00000094,0x00000095,0x000500a7,
0x00000070,0x00000097,0x00000093,0x00000096,0x000300f7,0x00000099,0x00000000,0x000400fa,
0x00000097,0x00000098,0x000000ae,0x000200f8,0x00000098,0x0004003d,0x00000006,0x0000009a,
0x0000007a,0x000500ac,0x00000070,0x0000009b,0x0000009a,0x00000020,0x000300f7,0x0000009d,
0x00000000,0x000400fa,0x0000009b,0x0000009c,0x0000009d,0x000200f8,0x0000009c,0x0004003d,
0x00000006,0x0000009e,0x00000075,0x00050080,0x00000006,0x0000009f,0x0000009e,0x00000019,
0x0003003e,0x00000075,0x0000009f,0x0003003e,0x000000a0,0x0000009e,0x0004003d,0x00000006,
0x000000a2,0x0000007b,0x0003003e,0x000000a1,0x000000a2,0x00060039,0x00000002,0x000000a3,
0x0000000f,0x000000a0,0x000000a1,0x000200f9,0x0000009d,0x000200f8,0x0000009d,0x0004003d,
0x00000006,0x000000a4,0x0000007a,0x000500ac,0x00000070,0x000000a5,0x000000a4,0x0000006c,
0x000300f7,0x000000a7,0x00000000,0x000400fa,0x000000a5,0x000000a6,0x000000a7,0x000200f8,
0x000000a6,0x0004003d,0x00000006,0x000000a8,0x00000075,0x00050080,0x00000006,0x000000a9,
0x000000a8,0x00000019,0x0003003e,0x00000075,0x000000a9,0x0003003e,0x000000aa,0x000000a8,
0x0004003d,0x00000006,0x000000ac,0x00000083,0x0003003e,0x000000ab,0x000000ac,0x00060039,
0x00000002,0x000000ad,0x0000000f,0x000000aa,0x000000ab,0x000200f9,0x000000a7,0x000200f8,
0x000000a7,0x0003003e,0x0000007a,0x0000006c,0x000200f9,0x00000099,0x000200f8,0x000000ae,
0x0004003d,0x00000006,0x000000b0,0x00000075,0x0003003e,0x000000af,0x000000b0,0x0004003d,
0x00000006,0x000000b2,0x00000084,0x0003003e,0x000000b1,0x000000b2,0x00060039,0x00000002,
0x000000b3,0x0000000f,0x000000af,0x000000b1,0x0004003d,0x00000006,0x000000b4,0x00000075,
0x00050080,0x00000006,0x000000b5,0x000000b4,0x00000019,0x0003003e,0x00000075,0x000000b5,
0x0004003d,0x00000006,0x000000b6,0x0000007a,0x00050080,0x00000006,0x000000b7,0x000000b6,
0x00000019,0x0003003e,0x0000007a,0x000000b7,0x000200f9,0x00000099,0x000200f8,0x00000099,
0x000200f9,0x0000007f,0x000200f8,0x0000007f,0x000200f9,0x0000007c,0x000200f8,0x0000007e,
0x0004003d,0x00000006,0x000000b8,0x0000007a,0x000500ac,0x00000070,0x000000b9,0x000000b8,
0x00000020,0x000300f7,0x000000bb,0x00000000,0x000400fa,0x000000b9,0x000000ba,0x000000bb,
0x000200f8,0x000000ba,0x0004003d,0x00000006,0x000000bd,0x00000075,0x0003003e,0x000000bc,
0x000000bd,0x0004003d,0x00000006,0x000000bf,0x0000007b,0x0003003e,0x000000be,0x000000bf,
0x00060039,0x00000002,0x000000c0,0x0000000f,0x000000bc,0x000000be,0x0004003d,0x00000006,
0x000000c1,0x00000075,0x00050080,0x00000006,0x000000c2,0x000000c1,0x00000019,0x0003003e,
0x00000075,0x000000c2,0x000200f9,0x000000bb,0x000200f8,0x000000bb,0x00050041,0x00000034,
0x000000c7,0x00000032,0x00000019,0x0004003d,0x00000006,0x000000c8,0x000000c7,0x0004003d,
0x00000006,0x000000c9,0x00000075,0x00060041,0x0000001b,0x000000ca,0x000000c6,0x00000017,
0x000000c8,0x0003003e,0x000000ca,0x000000c9,0x00050041,0x00000034,0x000000cb,0x00000032,
0x00000019,0x0004003d,0x00000006,0x000000cc,0x000000cb,0x00050080,0x00000006,0x000000cd,
0x000000cc,0x00000020,0x00050041,0x00000034,0x000000ce,0x00000032,0x00000017,0x0004003d,
0x00000006,0x000000cf,0x000000ce,0x00050080,0x00000006,0x000000d0,0x000000cf,0x00000020,
0x00060041,0x0000001b,0x000000d1,0x00000059,0x00000017,0x000000d0,0x0004003d,0x00000006,
0x000000d2,0x000000d1,0x00060041,0x0000001b,0x000000d3,0x000000c6,0x00000017,0x000000cd,
0x0003003e,0x000000d3,0x000000d2,0x00050041,0x00000034,0x000000d4,0x00000032,0x00000019,
0x0004003d,0x00000006,0x000000d5,0x000000d4,0x00050080,0x00000006,0x000000d6,0x000000d5,
0x00000061,0x00060041,0x0000001b,0x000000d7,0x000000c6,0x00000017,0x000000d6,0x0003003e,
0x000000d7,0x0000006c,0x00050041,0x00000034,0x000000d8,0x00000032,0x00000019,0x0004003d,
0x00000006,0x000000d9,0x000000d8,0x00050080,0x00000006,0x000000db,0x000000d9,0x000000da,
0x00050041,0x00000034,0x000000dc,0x00000032,0x00000017,0x0004003d,0x00000006,0x000000dd,
0x000000dc,0x00050080,0x00000006,0x000000de,0x000000dd,0x000000da,0x00060041,0x0000001b,
0x000000df,0x00000059,0x00000017,0x000000de,0x0004003d,0x00000006,0x000000e0,0x000000df,
0x00060041,0x0000001b,0x000000e1,0x000000c6,0x00000017,0x000000db,0x0003003e,0x000000e1,
0x000000e0,0x00050041,0x00000034,0x000000e2,0x00000032,0x00000019,0x0004003d,0x00000006,
0x000000e3,0x000000e2,0x00050080,0x00000006,0x000000e5,0x000000e3,0x000000e4,0x00050041,
0x00000034,0x000000e6,0x00000032,0x00000017,0x0004003d,0x00000006,0x000000e7,0x000000e6,
0x00050080,0x00000006,0x000000e8,0x000000e7,0x000000e4,0x00060041,0x0000001b,0x000000e9,
0x00000059,0x00000017,0x000000e8,0x0004003d,0x00000006,0x000000ea,0x000000e9,0x00060041,
0x0000001b,0x000000eb,0x000000c6,0x00000017,0x000000e5,0x0003003e,0x000000eb,0x000000ea,
0x00000002,0x00040020,0x0000001b,0x00000002,0x00000006,0x0004002b,0x00000006,0x00000020,
0x00000003,0x0004002b,0x00000016,0x00000022,0x00000003,0x0004002b,0x00000006,0x00000028,
0x000000ff,0x0006001e,0x0000002e,0x00000006,0x00000006,0x00000006,0x00000006,0x00040020,
0x0000002f,0x00000009,0x0000002e,0x0004003b,0x0000002f,0x00000030,0x00000009,0x00040020,
0x00000031,0x00000009,0x00000006,0x0003001d,0x00000038,0x00000006,0x0003001e,0x00000039,
0x00000038,0x00040020,0x0000003a,0x00000002,0x00000039,0x0004003b,0x0000003a,0x0000003b,
0x00000002,0x0004002b,0x00000016,0x00000043,0x000000ff,0x0003001d,0x00000053,0x00000006,
0x0003001e,0x00000054,0x00000053,0x00040020,0x00000055,0x00000002,0x00000054,0x0004003b,
0x00000055,0x00000056,0x00000002,0x0004002b,0x00000006,0x0000005e,0x00000002,0x00040017,
0x00000066,0x00000006,0x00000003,0x00040020,0x00000067,0x00000001,0x00000066,0x0004003b,
0x00000067,0x00000068,0x00000001,0x0004002b,0x00000006,0x00000069,0x00000000,0x00040020,
0x0000006a,0x00000001,0x00000006,0x0004002b,0x00000006,0x0000006d,0x00000001,0x00020014,
0x0000006e,0x0004002b,0x00000016,0x00000084,0x00000001,0x0003001d,0x000000c1,0x00000006,
0x0003001e,0x000000c2,0x000000c1,0x00040020,0x000000c3,0x00000002,0x000000c2,0x0004003b,
0x000000c3,0x000000c4,0x00000002,0x0004002b,0x00000006,0x000000e1,0x00000004,0x0004002b,
0x00000006,0x000000e9,0x00000040,0x0006002c,0x00000066,0x000000ea,0x000000e9,0x0000006d,
0x0000006d,0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,
0x0004003b,0x00000007,0x00000052,0x00000007,0x0004003b,0x00000007,0x0000005b,0x00000007,
0x0004003b,0x00000007,0x00000062,0x00000007,0x0004003b,0x00000007,0x00000073,0x00000007,
0x0004003b,0x00000007,0x00000074,0x00000007,0x0004003b,0x00000007,0x00000076,0x00000007,
0x0004003b,0x00000007,0x00000078,0x00000007,0x0004003b,0x00000007,0x00000079,0x00000007,
0x0004003b,0x00000007,0x00000081,0x00000007,0x0004003b,0x00000007,0x00000082,0x00000007,
0x0004003b,0x00000007,0x00000086,0x00000007,0x0004003b,0x00000007,0x0000009e,0x00000007,
0x0004003b,0x00000007,0x0000009f,0x00000007,0x0004003b,0x00000007,0x000000a8,0x00000007,
0x0004003b,0x00000007,0x000000a9,0x00000007,0x0004003b,0x00000007,0x000000ad,0x00000007,
0x0004003b,0x00000007,0x000000af,0x00000007,0x0004003b,0x00000007,0x000000ba,0x00000007,
0x0004003b,0x00000007,0x000000bc,0x00000007,0x00050041,0x00000031,0x00000057,0x00000030,
0x00000017,0x0004003d,0x00000006,0x00000058,0x00000057,0x00060041,0x0000001b,0x00000059,
0x00000056,0x00000017,0x00000058,0x0004003d,0x00000006,0x0000005a,0x00000059,0x0003003e,
0x00000052,0x0000005a,0x00050041,0x00000031,0x0000005c,0x00000030,0x00000017,0x0004003d,
0x00000006,0x0000005d,0x0000005c,0x00050080,0x00000006,0x0000005f,0x0000005d,0x0000005e,
0x00060041,0x0000001b,0x00000060,0x00000056,0x00000017,0x0000005f,0x0004003d,0x00000006,
0x00000061,0x00000060,0x0003003e,0x0000005b,0x00000061,0x0004003d,0x00000006,0x00000063,
0x0000005b,0x0004003d,0x00000006,0x00000064,0x00000052,0x00050080,0x00000006,0x00000065,
0x00000063,0x00000064,0x0003003e,0x00000062,0x00000065,0x00050041,0x0000006a,0x0000006b,
0x00000068,0x00000069,0x0004003d,0x00000006,0x0000006c,0x0000006b,0x000500ae,0x0000006e,
0x0000006f,0x0000006c,0x0000006d,0x000300f7,0x00000071,0x00000000,0x000400fa,0x0000006f,
0x00000070,0x00000071,0x000200f8,0x00000070,0x000100fd,0x000200f8,0x00000071,0x0003003e,
0x00000073,0x00000069,0x0004003d,0x00000006,0x00000075,0x0000005b,0x0003003e,0x00000074,
0x00000075,0x0004003d,0x00000006,0x00000077,0x00000052,0x0003003e,0x00000076,0x00000077,
0x0003003e,0x00000078,0x00000069,0x0003003e,0x00000079,0x00000069,0x000200f9,0x0000007a,
0x000200f8,0x0000007a,0x000400f6,0x0000007c,0x0000007d,0x00000000,0x000200f9,0x0000007e,
0x000200f8,0x0000007e,0x0004003d,0x00000006,0x0000007f,0x00000076,0x000500ac,0x0000006e,
0x00000080,0x0000007f,0x00000069,0x000400fa,0x00000080,0x0000007b,0x0000007c,0x000200f8,
0x0000007b,0x0003003e,0x00000081,0x00000028,0x0004003d,0x00000006,0x00000083,0x00000074,
0x00050080,0x00000006,0x00000085,0x00000083,0x00000084,0x0003003e,0x00000074,0x00000085,
0x0003003e,0x00000086,0x00000083,0x00050039,0x00000006,0x00000087,0x0000000a,0x00000086,
0x0003003e,0x00000082,0x00000087,0x0004003d,0x00000006,0x00000088,0x00000078,0x000500aa,
0x0000006e,0x00000089,0x00000088,0x00000069,0x000300f7,0x0000008b,0x00000000,0x000400fa,
0x00000089,0x0000008a,0x0000008b,0x000200f8,0x0000008a,0x0004003d,0x00000006,0x0000008c,
0x00000082,0x0003003e,0x00000079,0x0000008c,0x000200f9,0x0000008b,0x000200f8,0x0000008b,
0x0004003d,0x00000006,0x0000008d,0x00000076,0x00050082,0x00000006,0x0000008e,0x0000008d,
0x00000084,0x0003003e,0x00000076,0x0000008e,0x00050041,0x00000031,0x0000008f,0x00000030,
0x00000022,0x0004003d,0x00000006,0x00000090,0x0000008f,0x000500aa,0x0000006e,0x00000091,
0x00000090,0x0000006d,0x0004003d,0x00000006,0x00000092,0x00000082,0x0004003d,0x00000006,
0x00000093,0x00000081,0x000500aa,0x0000006e,0x00000094,0x00000092,0x00000093,0x000500a7,
0x0000006e,0x00000095,0x00000091,0x00000094,0x000300f7,0x00000097,0x00000000,0x000400fa,
0x00000095,0x00000096,0x000000ac,0x000200f8,0x00000096,0x0004003d,0x00000006,0x00000098,
0x00000078,0x000500ac,0x0000006e,0x00000099,0x00000098,0x0000006d,0x000300f7,0x0000009b,
0x00000000,0x000400fa,0x00000099,0x0000009a,0x0000009b,0x000200f8,0x0000009a,0x0004003d,
0x00000006,0x0000009c,0x00000073,0x00050080,0x00000006,0x0000009d,0x0000009c,0x00000084,
0x0003003e,0x00000073,0x0000009d,0x0003003e,0x0000009e,0x0000009c,0x0004003d,0x00000006,
0x000000a0,0x00000079,0x0003003e,0x0000009f,0x000000a0,0x00060039,0x00000002,0x000000a1,
0x0000000f,0x0000009e,0x0000009f,0x000200f9,0x0000009b,0x000200f8,0x0000009b,0x0004003d,
0x00000006,0x000000a2,0x00000078,0x000500ac,0x0000006e,0x000000a3,0x000000a2,0x00000069,
0x000300f7,0x000000a5,0x00000000,0x000400fa,0x000000a3,0x000000a4,0x000000a5,0x000200f8,
0x000000a4,0x0004003d,0x00000006,0x000000a6,0x00000073,0x00050080,0x00000006,0x000000a7,
0x000000a6,0x00000084,0x0003003e,0x00000073,0x000000a7,0x0003003e,0x000000a8,0x000000a6,
0x0004003d,0x00000006,0x000000aa,0x00000081,0x0003003e,0x000000a9,0x000000aa,0x00060039,
0x00000002,0x000000ab,0x0000000f,0x000000a8,0x000000a9,0x000200f9,0x000000a5,0x000200f8,
0x000000a5,0x0003003e,0x00000078,0x00000069,0x000200f9,0x00000097,0x000200f8,0x000000ac,
0x0004003d,0x00000006,0x000000ae,0x00000073,0x0003003e,0x000000ad,0x000000ae,0x0004003d,
0x00000006,0x000000b0,0x00000082,0x0003003e,0x000000af,0x000000b0,0x00060039,0x00000002,
0x000000b1,0x0000000f,0x000000ad,0x000000af,0x0004003d,0x00000006,0x000000b2,0x00000073,
0x00050080,0x00000006,0x000000b3,0x000000b2,0x00000084,0x0003003e,0x00000073,0x000000b3,
0x0004003d,0x00000006,0x000000b4,0x00000078,0x00050080,0x00000006,0x000000b5,0x000000b4,
0x00000084,0x0003003e,0x00000078,0x000000b5,0x000200f9,0x00000097,0x000200f8,0x00000097,
0x000200f9,0x0000007d,0x000200f8,0x0000007d,0x000200f9,0x0000007a,0x000200f8,0x0000007c,
0x0004003d,0x00000006,0x000000b6,0x00000078,0x000500ac,0x0000006e,0x000000b7,0x000000b6,
0x0000006d,0x000300f7,0x000000b9,0x00000000,0x000400fa,0x000000b7,0x000000b8,0x000000b9,
0x000200f8,0x000000b8,0x0004003d,0x00000006,0x000000bb,0x00000073,0x0003003e,0x000000ba,
0x000000bb,0x0004003d,0x00000006,0x000000bd,0x00000079,0x0003003e,0x000000bc,0x000000bd,
0x00060039,0x00000002,0x000000be,0x0000000f,0x000000ba,0x000000bc,0x0004003d,0x00000006,
0x000000bf,0x00000073,0x00050080,0x00000006,0x000000c0,0x000000bf,0x00000084,0x0003003e,
0x00000073,0x000000c0,0x000200f9,0x000000b9,0x000200f8,0x000000b9,0x00050041,0x00000031,
0x000000c5,0x00000030,0x00000084,0x0004003d,0x00000006,0x000000c6,0x000000c5,0x0004003d,
0x00000006,0x000000c7,0x00000073,0x00060041,0x0000001b,0x000000c8,0x000000c4,0x00000017,
0x000000c6,0x0003003e,0x000000c8,0x000000c7,0x00050041,0x00000031,0x000000c9,0x00000030,
0x00000084,0x0004003d,0x00000006,0x000000ca,0x000000c9,0x00050080,0x00000006,0x000000cb,
0x000000ca,0x0000006d,0x00050041,0x00000031,0x000000cc,0x00000030,0x00000017,0x0004003d,
0x00000006,0x000000cd,0x000000cc,0x00050080,0x00000006,0x000000ce,0x000000cd,0x0000006d,
0x00060041,0x0000001b,0x000000cf,0x00000056,0x00000017,0x000000ce,0x0004003d,0x00000006,
0x000000d0,0x000000cf,0x00060041,0x0000001b,0x000000d1,0x000000c4,0x00000017,0x000000cb,
0x0003003e,0x000000d1,0x000000d0,0x00050041,0x00000031,0x000000d2,0x00000030,0x00000084,
0x0004003d,0x00000006,0x000000d3,0x000000d2,0x00050080,0x00000006,0x000000d4,0x000000d3,
0x0000005e,0x00060041,0x0000001b,0x000000d5,0x000000c4,0x00000017,0x000000d4,0x0003003e,
0x000000d5,0x00000069,0x00050041,0x00000031,0x000000d6,0x00000030,0x00000084,0x0004003d,
0x00000006,0x000000d7,0x000000d6,0x00050080,0x00000006,0x000000d8,0x000000d7,0x00000020,
0x00050041,0x00000031,0x000000d9,0x00000030,0x00000017,0x0004003d,0x00000006,0x000000da,
0x000000d9,0x00050080,0x00000006,0x000000db,0x000000da,0x00000020,0x00060041,0x0000001b,
0x000000dc,0x00000056,0x00000017,0x000000db,0x0004003d,0x00000006,0x000000dd,0x000000dc,
0x00060041,0x0000001b,0x000000de,0x000000c4,0x00000017,0x000000d8,0x0003003e,0x000000de,
0x000000dd,0x00050041,0x00000031,0x000000df,0x00000030,0x00000084,0x0004003d,0x00000006,
0x000000e0,0x000000df,0x00050080,0x00000006,0x000000e2,0x000000e0,0x000000e1,0x00050041,
0x00000031,0x000000e3,0x00000030,0x00000017,0x0004003d,0x00000006,0x000000e4,0x000000e3,
0x00050080,0x00000006,0x000000e5,0x000000e4,0x000000e1,0x00060041,0x0000001b,0x000000e6,
0x00000056,0x00000017,0x000000e5,0x0004003d,0x00000006,0x000000e7,0x000000e6,0x00060041,
0x0000001b,0x000000e8,0x000000c4,0x00000017,0x000000e2,0x0003003e,0x000000e8,0x000000e7,
0x000100fd,0x00010038,0x00050036,0x00000006,0x0000000a,0x00000000,0x00000008,0x00030037,
0x00000007,0x00000009,0x000200f8,0x0000000b,0x0004003b,0x00000007,0x00000011,0x00000007,
0x0004003b,0x00000007,0x0000001e,0x00000007,0x0004003b,0x00000007,0x00000024,0x00000007,
0x0004003b,0x00000007,0x00000026,0x00000007,0x0004003d,0x00000006,0x00000018,0x00000009,
0x000500c2,0x00000006,0x0000001a,0x00000018,0x00000019,0x00060041,0x0000001b,0x0000001c,
0x00000015,0x00000017,0x0000001a,0x0004003d,0x00000006,0x0000001d,0x0000001c,0x0003003e,
0x00000011,0x0000001d,0x0004003d,0x00000006,0x0000001f,0x00000009,0x000500c7,0x00000006,
0x00000021,0x0000001f,0x00000020,0x000500c4,0x00000006,0x00000023,0x00000021,0x00000022,
0x0003003e,0x0000001e,0x00000023,0x0003003e,0x00000024,0x00000025,0x0004003d,0x00000006,
0x00000027,0x00000011,0x0004003d,0x00000006,0x00000028,0x0000001e,0x000500c2,0x00000006,
0x00000029,0x00000027,0x00000028,0x0004003d,0x00000006,0x0000002a,0x00000024,0x000500c7,
0x00000006,0x0000002b,0x00000029,0x0000002a,0x0003003e,0x00000026,0x0000002b,0x0004003d,
0x00000006,0x0000002c,0x00000026,0x000200fe,0x0000002c,0x00010038,0x00050036,0x00000002,
0x0000000f,0x00000000,0x0000000c,0x00030037,0x00000007,0x0000000d,0x00030037,0x00000007,
0x0000000e,0x000200f8,0x00000010,0x0004003b,0x00000007,0x0000002f,0x00000007,0x0004003b,
0x00000007,0x0000003a,0x00000007,0x0004003b,0x00000007,0x00000042,0x00000007,0x0004003b,
0x00000007,0x00000046,0x00000007,0x00050041,0x00000034,0x00000035,0x00000032,0x00000033,
0x0004003d,0x00000006,0x00000036,0x00000035,0x0004003d,0x00000006,0x00000037,0x0000000d,
0x000500c2,0x00000006,0x00000038,0x00000037,0x00000019,0x00050080,0x00000006,0x00000039,
0x00000036,0x00000038,0x0003003e,0x0000002f,0x00000039,0x0004003d,0x00000006,0x0000003f,
0x0000002f,0x00060041,0x0000001b,0x00000040,0x0000003e,0x00000017,0x0000003f,0x0004003d,
0x00000006,0x00000041,0x00000040,0x0003003e,0x0000003a,0x00000041,0x0004003d,0x00000006,
0x00000043,0x0000000d,0x000500c7,0x00000006,0x00000044,0x00000043,0x00000020,0x000500c4,
0x00000006,0x00000045,0x00000044,0x00000022,0x0003003e,0x00000042,0x00000045,0x0003003e,
0x00000046,0x00000025,0x0004003d,0x00000006,0x00000047,0x00000046,0x0004003d,0x00000006,
0x00000048,0x00000042,0x000500c4,0x00000006,0x00000049,0x00000047,0x00000048,0x000400c8,
0x00000006,0x0000004a,0x00000049,0x0004003d,0x00000006,0x0000004b,0x0000003a,0x000500c7,
0x00000006,0x0000004c,0x0000004b,0x0000004a,0x0003003e,0x0000003a,0x0000004c,0x0004003d,
0x00000006,0x0000004d,0x0000000e,0x0004003d,0x00000006,0x0000004e,0x00000042,0x000500c4,
0x00000006,0x0000004f,0x0000004d,0x0000004e,0x0004003d,0x00000006,0x00000050,0x0000003a,
0x000500c5,0x00000006,0x00000051,0x00000050,0x0000004f,0x0003003e,0x0000003a,0x00000051,
0x0004003d,0x00000006,0x00000052,0x0000002f,0x0004003d,0x00000006,0x00000053,0x0000003a,
0x00060041,0x0000001b,0x00000054,0x0000003e,0x00000017,0x00000052,0x0003003e,0x00000054,
0x00000053,0x000100fd,0x00010038
0x0004003d,0x00000006,0x00000018,0x00000009,0x000500c2,0x00000006,0x0000001a,0x00000018,
0x00000019,0x00060041,0x0000001b,0x0000001c,0x00000015,0x00000017,0x0000001a,0x0004003d,
0x00000006,0x0000001d,0x0000001c,0x0003003e,0x00000011,0x0000001d,0x0004003d,0x00000006,
0x0000001f,0x00000009,0x000500c7,0x00000006,0x00000021,0x0000001f,0x00000020,0x000500c4,
0x00000006,0x00000023,0x00000021,0x00000022,0x0003003e,0x0000001e,0x00000023,0x0004003d,
0x00000006,0x00000025,0x00000011,0x0004003d,0x00000006,0x00000026,0x0000001e,0x000500c2,
0x00000006,0x00000027,0x00000025,0x00000026,0x000500c7,0x00000006,0x00000029,0x00000027,
0x00000028,0x0003003e,0x00000024,0x00000029,0x0004003d,0x00000006,0x0000002a,0x00000024,
0x000200fe,0x0000002a,0x00010038,0x00050036,0x00000002,0x0000000f,0x00000000,0x0000000c,
0x00030037,0x00000007,0x0000000d,0x00030037,0x00000007,0x0000000e,0x000200f8,0x00000010,
0x0004003b,0x00000007,0x0000002d,0x00000007,0x0004003b,0x00000007,0x00000037,0x00000007,
0x0004003b,0x00000007,0x0000003f,0x00000007,0x00050041,0x00000031,0x00000032,0x00000030,
0x00000019,0x0004003d,0x00000006,0x00000033,0x00000032,0x0004003d,0x00000006,0x00000034,
0x0000000d,0x000500c2,0x00000006,0x00000035,0x00000034,0x00000019,0x00050080,0x00000006,
0x00000036,0x00000033,0x00000035,0x0003003e,0x0000002d,0x00000036,0x0004003d,0x00000006,
0x0000003c,0x0000002d,0x00060041,0x0000001b,0x0000003d,0x0000003b,0x00000017,0x0000003c,
0x0004003d,0x00000006,0x0000003e,0x0000003d,0x0003003e,0x00000037,0x0000003e,0x0004003d,
0x00000006,0x00000040,0x0000000d,0x000500c7,0x00000006,0x00000041,0x00000040,0x00000020,
0x000500c4,0x00000006,0x00000042,0x00000041,0x00000022,0x0003003e,0x0000003f,0x00000042,
0x0004003d,0x00000006,0x00000044,0x0000003f,0x000500c4,0x00000016,0x00000045,0x00000043,
0x00000044,0x000400c8,0x00000016,0x00000046,0x00000045,0x0004007c,0x00000006,0x00000047,
0x00000046,0x0004003d,0x00000006,0x00000048,0x00000037,0x000500c7,0x00000006,0x00000049,
0x00000048,0x00000047,0x0003003e,0x00000037,0x00000049,0x0004003d,0x00000006,0x0000004a,
0x0000000e,0x0004003d,0x00000006,0x0000004b,0x0000003f,0x000500c4,0x00000006,0x0000004c,
0x0000004a,0x0000004b,0x0004003d,0x00000006,0x0000004d,0x00000037,0x000500c5,0x00000006,
0x0000004e,0x0000004d,0x0000004c,0x0003003e,0x00000037,0x0000004e,0x0004003d,0x00000006,
0x0000004f,0x0000002d,0x0004003d,0x00000006,0x00000050,0x00000037,0x00060041,0x0000001b,
0x00000051,0x0000003b,0x00000017,0x0000004f,0x0003003e,0x00000051,0x00000050,0x000100fd,
0x00010038
};
// Generated from:
......@@ -246,13 +243,11 @@ const uint32_t kConvertIndexIndirectLineLoop_comp_00000000[] = {
// uint GetIndexValue(uint index)
// {
//
// uint srcBlock = srcData[index >> 1];
// uint srcBlock = srcData[index >> 2];
//
// uint srcShift =(index & 0x1)<< 4;
// uint srcShift =((index & 0x3)<< 3);
//
// uint srcMask = 0xffff;
//
// uint value =(srcBlock >> srcShift)& srcMask;
// uint value =(srcBlock >> srcShift)& 0xff;
// return value;
//
// }
......@@ -260,14 +255,13 @@ const uint32_t kConvertIndexIndirectLineLoop_comp_00000000[] = {
// void PutIndexValue(uint index, uint value)
// {
//
// uint dstIndex = dstOffsetDiv4 +(index >> 1);
// uint dstIndex = dstOffsetDiv4 +(index >> 2);
//
// uint srcBlock = dstData[dstIndex];
//
// uint srcShift =(index & 0x1)<< 4;
// uint srcMask = 0xffff;
// uint srcShift =((index & 0x3)<< 3);
//
// srcBlock &= ~(srcMask << srcShift);
// srcBlock &= ~(0xff << srcShift);
//
// srcBlock |= value << srcShift;
//
......@@ -293,9 +287,7 @@ const uint32_t kConvertIndexIndirectLineLoop_comp_00000000[] = {
// while(indicesRemaining > 0)
// {
// uint indexValue;
//
// uint restartValue = 0xffff;
//
// uint restartValue = 0xff;
// indexValue = GetIndexValue(srcIdx ++);
// if(lineSize == 0)
// {
......
// 7.12.3226
#pragma once
const uint32_t kConvertIndexIndirectLineLoop_comp_00000001[] = {
0x07230203,0x00010000,0x00080007,0x000000c9,0x00000000,0x00020011,0x00000001,0x0006000b,
0x07230203,0x00010000,0x00080007,0x000000ec,0x00000000,0x00020011,0x00000001,0x0006000b,
0x00000001,0x4c534c47,0x6474732e,0x3035342e,0x00000000,0x0003000e,0x00000000,0x00000001,
0x0006000f,0x00000005,0x00000004,0x6e69616d,0x00000000,0x00000043,0x00060010,0x00000004,
0x0006000f,0x00000005,0x00000004,0x6e69616d,0x00000000,0x00000069,0x00060010,0x00000004,
0x00000011,0x00000040,0x00000001,0x00000001,0x00030003,0x00000002,0x000001c2,0x00040005,
0x00000004,0x6e69616d,0x00000000,0x00070005,0x0000000a,0x49746547,0x7865646e,0x756c6156,
0x31752865,0x0000003b,0x00040005,0x00000009,0x65646e69,0x00000078,0x00080005,0x0000000f,
0x49747550,0x7865646e,0x756c6156,0x31752865,0x3b31753b,0x00000000,0x00040005,0x0000000d,
0x65646e69,0x00000078,0x00040005,0x0000000e,0x756c6176,0x00000065,0x00030005,0x00000012,
0x00637273,0x00050006,0x00000012,0x00000000,0x44637273,0x00617461,0x00030005,0x00000014,
0x00000000,0x00030005,0x0000001e,0x00747364,0x00050006,0x0000001e,0x00000000,0x44747364,
0x00617461,0x00030005,0x00000020,0x00000000,0x00060005,0x00000021,0x68737550,0x736e6f43,
0x746e6174,0x00000073,0x00070006,0x00000021,0x00000000,0x4f646d63,0x65736666,0x76694474,
0x00000034,0x00080006,0x00000021,0x00000001,0x43747364,0x664f646d,0x74657366,0x34766944,
0x00000000,0x00070006,0x00000021,0x00000002,0x4f747364,0x65736666,0x76694474,0x00000034,
0x00080006,0x00000021,0x00000003,0x65527369,0x72617473,0x616e4574,0x64656c62,0x00000000,
0x00030005,0x00000023,0x00000000,0x00050005,0x0000002d,0x65646e69,0x756f4378,0x0000746e,
0x00030005,0x0000002f,0x00646d63,0x00050006,0x0000002f,0x00000000,0x44646d63,0x00617461,
0x00030005,0x00000031,0x00000000,0x00050005,0x00000036,0x73726966,0x646e4974,0x00007865,
0x00050005,0x0000003d,0x49646e65,0x7865646e,0x00000000,0x00080005,0x00000043,0x475f6c67,
0x61626f6c,0x766e496c,0x7461636f,0x496e6f69,0x00000044,0x00060005,0x0000004e,0x6b726f77,
0x43676e69,0x746e756f,0x00000000,0x00040005,0x0000004f,0x49637273,0x00007864,0x00070005,
0x00000051,0x69646e69,0x52736563,0x69616d65,0x676e696e,0x00000000,0x00050005,0x00000053,
0x656e696c,0x657a6953,0x00000000,0x00060005,0x00000054,0x73726966,0x646e4974,0x61567865,
0x0065756c,0x00060005,0x0000005c,0x74736572,0x56747261,0x65756c61,0x00000000,0x00050005,
0x0000005e,0x65646e69,0x6c615678,0x00006575,0x00040005,0x00000062,0x61726170,0x0000006d,
0x00040005,0x0000007b,0x61726170,0x0000006d,0x00040005,0x0000007c,0x61726170,0x0000006d,
0x00040005,0x00000085,0x61726170,0x0000006d,0x00040005,0x00000086,0x61726170,0x0000006d,
0x00040005,0x0000008a,0x61726170,0x0000006d,0x00040005,0x0000008c,0x61726170,0x0000006d,
0x00040005,0x00000097,0x61726170,0x0000006d,0x00040005,0x00000099,0x61726170,0x0000006d,
0x00040005,0x0000009f,0x43747364,0x0000646d,0x00060006,0x0000009f,0x00000000,0x43747364,
0x6144646d,0x00006174,0x00030005,0x000000a1,0x00000000,0x00040047,0x00000011,0x00000006,
0x00000004,0x00040048,0x00000012,0x00000000,0x00000018,0x00050048,0x00000012,0x00000000,
0x00000023,0x00000000,0x00030047,0x00000012,0x00000003,0x00040047,0x00000014,0x00000022,
0x00000000,0x00040047,0x00000014,0x00000021,0x00000001,0x00040047,0x0000001d,0x00000006,
0x00000004,0x00050048,0x0000001e,0x00000000,0x00000023,0x00000000,0x00030047,0x0000001e,
0x00000003,0x00040047,0x00000020,0x00000022,0x00000000,0x00040047,0x00000020,0x00000021,
0x00000000,0x00050048,0x00000021,0x00000000,0x00000023,0x00000000,0x00050048,0x00000021,
0x00000001,0x00000023,0x00000004,0x00050048,0x00000021,0x00000002,0x00000023,0x00000008,
0x00050048,0x00000021,0x00000003,0x00000023,0x0000000c,0x00030047,0x00000021,0x00000002,
0x00040047,0x0000002e,0x00000006,0x00000004,0x00040048,0x0000002f,0x00000000,0x00000018,
0x00050048,0x0000002f,0x00000000,0x00000023,0x00000000,0x00030047,0x0000002f,0x00000003,
0x00040047,0x00000031,0x00000022,0x00000000,0x00040047,0x00000031,0x00000021,0x00000002,
0x00040047,0x00000043,0x0000000b,0x0000001c,0x00040047,0x0000009e,0x00000006,0x00000004,
0x00050048,0x0000009f,0x00000000,0x00000023,0x00000000,0x00030047,0x0000009f,0x00000003,
0x00040047,0x000000a1,0x00000022,0x00000000,0x00040047,0x000000a1,0x00000021,0x00000003,
0x00040047,0x000000c8,0x0000000b,0x00000019,0x00020013,0x00000002,0x00030021,0x00000003,
0x00000002,0x00040015,0x00000006,0x00000020,0x00000000,0x00040020,0x00000007,0x00000007,
0x00000006,0x00040021,0x00000008,0x00000006,0x00000007,0x00050021,0x0000000c,0x00000002,
0x00000007,0x00000007,0x0003001d,0x00000011,0x00000006,0x0003001e,0x00000012,0x00000011,
0x00040020,0x00000013,0x00000002,0x00000012,0x0004003b,0x00000013,0x00000014,0x00000002,
0x00040015,0x00000015,0x00000020,0x00000001,0x0004002b,0x00000015,0x00000016,0x00000000,
0x00040020,0x00000018,0x00000002,0x00000006,0x0003001d,0x0000001d,0x00000006,0x0003001e,
0x0000001e,0x0000001d,0x00040020,0x0000001f,0x00000002,0x0000001e,0x0004003b,0x0000001f,
0x00000020,0x00000002,0x0006001e,0x00000021,0x00000006,0x00000006,0x00000006,0x00000006,
0x00040020,0x00000022,0x00000009,0x00000021,0x0004003b,0x00000022,0x00000023,0x00000009,
0x0004002b,0x00000015,0x00000024,0x00000002,0x00040020,0x00000025,0x00000009,0x00000006,
0x0003001d,0x0000002e,0x00000006,0x0003001e,0x0000002f,0x0000002e,0x00040020,0x00000030,
0x00000002,0x0000002f,0x0004003b,0x00000030,0x00000031,0x00000002,0x0004002b,0x00000006,
0x00000039,0x00000002,0x00040017,0x00000041,0x00000006,0x00000003,0x00040020,0x00000042,
0x00000001,0x00000041,0x0004003b,0x00000042,0x00000043,0x00000001,0x0004002b,0x00000006,
0x00000044,0x00000000,0x00040020,0x00000045,0x00000001,0x00000006,0x0004002b,0x00000006,
0x00000048,0x00000001,0x00020014,0x00000049,0x0004002b,0x00000006,0x0000005d,0xffffffff,
0x0004002b,0x00000015,0x00000060,0x00000001,0x0004002b,0x00000015,0x0000006b,0x00000003,
0x0003001d,0x0000009e,0x00000006,0x0003001e,0x0000009f,0x0000009e,0x00040020,0x000000a0,
0x00000002,0x0000009f,0x0004003b,0x000000a0,0x000000a1,0x00000002,0x0004002b,0x00000006,
0x000000b5,0x00000003,0x0004002b,0x00000006,0x000000bf,0x00000004,0x0004002b,0x00000006,
0x000000c7,0x00000040,0x0006002c,0x00000041,0x000000c8,0x000000c7,0x00000048,0x00000048,
0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,0x0004003b,
0x00000007,0x0000002d,0x00000007,0x0004003b,0x00000007,0x00000036,0x00000007,0x0004003b,
0x00000007,0x0000003d,0x00000007,0x0004003b,0x00000007,0x0000004e,0x00000007,0x0004003b,
0x00000007,0x0000004f,0x00000007,0x0004003b,0x00000007,0x00000051,0x00000007,0x0004003b,
0x00000007,0x00000053,0x00000007,0x0004003b,0x00000007,0x00000054,0x00000007,0x0004003b,
0x00000007,0x0000005c,0x00000007,0x0004003b,0x00000007,0x0000005e,0x00000007,0x0004003b,
0x00000007,0x00000062,0x00000007,0x0004003b,0x00000007,0x0000007b,0x00000007,0x0004003b,
0x00000007,0x0000007c,0x00000007,0x0004003b,0x00000007,0x00000085,0x00000007,0x0004003b,
0x00000007,0x00000086,0x00000007,0x0004003b,0x00000007,0x0000008a,0x00000007,0x0004003b,
0x00000007,0x0000008c,0x00000007,0x0004003b,0x00000007,0x00000097,0x00000007,0x0004003b,
0x00000007,0x00000099,0x00000007,0x00050041,0x00000025,0x00000032,0x00000023,0x00000016,
0x0004003d,0x00000006,0x00000033,0x00000032,0x00060041,0x00000018,0x00000034,0x00000031,
0x00000016,0x00000033,0x0004003d,0x00000006,0x00000035,0x00000034,0x0003003e,0x0000002d,
0x00000035,0x00050041,0x00000025,0x00000037,0x00000023,0x00000016,0x0004003d,0x00000006,
0x00000038,0x00000037,0x00050080,0x00000006,0x0000003a,0x00000038,0x00000039,0x00060041,
0x00000018,0x0000003b,0x00000031,0x00000016,0x0000003a,0x0004003d,0x00000006,0x0000003c,
0x0000003b,0x0003003e,0x00000036,0x0000003c,0x0004003d,0x00000006,0x0000003e,0x00000036,
0x0004003d,0x00000006,0x0000003f,0x0000002d,0x00050080,0x00000006,0x00000040,0x0000003e,
0x0000003f,0x0003003e,0x0000003d,0x00000040,0x00050041,0x00000045,0x00000046,0x00000043,
0x00000044,0x0004003d,0x00000006,0x00000047,0x00000046,0x000500ae,0x00000049,0x0000004a,
0x00000047,0x00000048,0x000300f7,0x0000004c,0x00000000,0x000400fa,0x0000004a,0x0000004b,
0x0000004c,0x000200f8,0x0000004b,0x000100fd,0x000200f8,0x0000004c,0x0003003e,0x0000004e,
0x00000044,0x0004003d,0x00000006,0x00000050,0x00000036,0x0003003e,0x0000004f,0x00000050,
0x0004003d,0x00000006,0x00000052,0x0000002d,0x0003003e,0x00000051,0x00000052,0x0003003e,
0x00000053,0x00000044,0x0003003e,0x00000054,0x00000044,0x000200f9,0x00000055,0x000200f8,
0x00000055,0x000400f6,0x00000057,0x00000058,0x00000000,0x000200f9,0x00000059,0x000200f8,
0x00000059,0x0004003d,0x00000006,0x0000005a,0x00000051,0x000500ac,0x00000049,0x0000005b,
0x0000005a,0x00000044,0x000400fa,0x0000005b,0x00000056,0x00000057,0x000200f8,0x00000056,
0x0003003e,0x0000005c,0x0000005d,0x0004003d,0x00000006,0x0000005f,0x0000004f,0x00050080,
0x00000006,0x00000061,0x0000005f,0x00000060,0x0003003e,0x0000004f,0x00000061,0x0003003e,
0x00000062,0x0000005f,0x00050039,0x00000006,0x00000063,0x0000000a,0x00000062,0x0003003e,
0x0000005e,0x00000063,0x0004003d,0x00000006,0x00000064,0x00000053,0x000500aa,0x00000049,
0x00000065,0x00000064,0x00000044,0x000300f7,0x00000067,0x00000000,0x000400fa,0x00000065,
0x00000066,0x00000067,0x000200f8,0x00000066,0x0004003d,0x00000006,0x00000068,0x0000005e,
0x0003003e,0x00000054,0x00000068,0x000200f9,0x00000067,0x000200f8,0x00000067,0x0004003d,
0x00000006,0x00000069,0x00000051,0x00050082,0x00000006,0x0000006a,0x00000069,0x00000060,
0x0003003e,0x00000051,0x0000006a,0x00050041,0x00000025,0x0000006c,0x00000023,0x0000006b,
0x0004003d,0x00000006,0x0000006d,0x0000006c,0x000500aa,0x00000049,0x0000006e,0x0000006d,
0x00000048,0x0004003d,0x00000006,0x0000006f,0x0000005e,0x0004003d,0x00000006,0x00000070,
0x0000005c,0x000500aa,0x00000049,0x00000071,0x0000006f,0x00000070,0x000500a7,0x00000049,
0x00000072,0x0000006e,0x00000071,0x000300f7,0x00000074,0x00000000,0x000400fa,0x00000072,
0x00000073,0x00000089,0x000200f8,0x00000073,0x0004003d,0x00000006,0x00000075,0x00000053,
0x000500ac,0x00000049,0x00000076,0x00000075,0x00000048,0x000300f7,0x00000078,0x00000000,
0x000400fa,0x00000076,0x00000077,0x00000078,0x000200f8,0x00000077,0x0004003d,0x00000006,
0x00000079,0x0000004e,0x00050080,0x00000006,0x0000007a,0x00000079,0x00000060,0x0003003e,
0x0000004e,0x0000007a,0x0003003e,0x0000007b,0x00000079,0x0004003d,0x00000006,0x0000007d,
0x00000054,0x0003003e,0x0000007c,0x0000007d,0x00060039,0x00000002,0x0000007e,0x0000000f,
0x0000007b,0x0000007c,0x000200f9,0x00000078,0x000200f8,0x00000078,0x0004003d,0x00000006,
0x0000007f,0x00000053,0x000500ac,0x00000049,0x00000080,0x0000007f,0x00000044,0x000300f7,
0x00000082,0x00000000,0x000400fa,0x00000080,0x00000081,0x00000082,0x000200f8,0x00000081,
0x0004003d,0x00000006,0x00000083,0x0000004e,0x00050080,0x00000006,0x00000084,0x00000083,
0x00000060,0x0003003e,0x0000004e,0x00000084,0x0003003e,0x00000085,0x00000083,0x0004003d,
0x00000006,0x00000087,0x0000005c,0x0003003e,0x00000086,0x00000087,0x00060039,0x00000002,
0x00000088,0x0000000f,0x00000085,0x00000086,0x000200f9,0x00000082,0x000200f8,0x00000082,
0x0003003e,0x00000053,0x00000044,0x000200f9,0x00000074,0x000200f8,0x00000089,0x0004003d,
0x00000006,0x0000008b,0x0000004e,0x0003003e,0x0000008a,0x0000008b,0x0004003d,0x00000006,
0x0000008d,0x0000005e,0x0003003e,0x0000008c,0x0000008d,0x00060039,0x00000002,0x0000008e,
0x0000000f,0x0000008a,0x0000008c,0x0004003d,0x00000006,0x0000008f,0x0000004e,0x00050080,
0x00000006,0x00000090,0x0000008f,0x00000060,0x0003003e,0x0000004e,0x00000090,0x0004003d,
0x00000006,0x00000091,0x00000053,0x00050080,0x00000006,0x00000092,0x00000091,0x00000060,
0x0003003e,0x00000053,0x00000092,0x000200f9,0x00000074,0x000200f8,0x00000074,0x000200f9,
0x00000058,0x000200f8,0x00000058,0x000200f9,0x00000055,0x000200f8,0x00000057,0x0004003d,
0x00000006,0x00000093,0x00000053,0x000500ac,0x00000049,0x00000094,0x00000093,0x00000048,
0x000300f7,0x00000096,0x00000000,0x000400fa,0x00000094,0x00000095,0x00000096,0x000200f8,
0x00000095,0x0004003d,0x00000006,0x00000098,0x0000004e,0x0003003e,0x00000097,0x00000098,
0x0004003d,0x00000006,0x0000009a,0x00000054,0x0003003e,0x00000099,0x0000009a,0x00060039,
0x00000002,0x0000009b,0x0000000f,0x00000097,0x00000099,0x0004003d,0x00000006,0x0000009c,
0x0000004e,0x00050080,0x00000006,0x0000009d,0x0000009c,0x00000060,0x0003003e,0x0000004e,
0x0000009d,0x000200f9,0x00000096,0x000200f8,0x00000096,0x00050041,0x00000025,0x000000a2,
0x00000023,0x00000060,0x0004003d,0x00000006,0x000000a3,0x000000a2,0x0004003d,0x00000006,
0x000000a4,0x0000004e,0x00060041,0x00000018,0x000000a5,0x000000a1,0x00000016,0x000000a3,
0x0003003e,0x000000a5,0x000000a4,0x00050041,0x00000025,0x000000a6,0x00000023,0x00000060,
0x0004003d,0x00000006,0x000000a7,0x000000a6,0x00050080,0x00000006,0x000000a8,0x000000a7,
0x00000048,0x00050041,0x00000025,0x000000a9,0x00000023,0x00000016,0x0004003d,0x00000006,
0x000000aa,0x000000a9,0x00050080,0x00000006,0x000000ab,0x000000aa,0x00000048,0x00060041,
0x00000018,0x000000ac,0x00000031,0x00000016,0x000000ab,0x0004003d,0x00000006,0x000000ad,
0x000000ac,0x00060041,0x00000018,0x000000ae,0x000000a1,0x00000016,0x000000a8,0x0003003e,
0x000000ae,0x000000ad,0x00050041,0x00000025,0x000000af,0x00000023,0x00000060,0x0004003d,
0x00000006,0x000000b0,0x000000af,0x00050080,0x00000006,0x000000b1,0x000000b0,0x00000039,
0x00060041,0x00000018,0x000000b2,0x000000a1,0x00000016,0x000000b1,0x0003003e,0x000000b2,
0x00000044,0x00050041,0x00000025,0x000000b3,0x00000023,0x00000060,0x0004003d,0x00000006,
0x000000b4,0x000000b3,0x00050080,0x00000006,0x000000b6,0x000000b4,0x000000b5,0x00050041,
0x00000025,0x000000b7,0x00000023,0x00000016,0x0004003d,0x00000006,0x000000b8,0x000000b7,
0x00050080,0x00000006,0x000000b9,0x000000b8,0x000000b5,0x00060041,0x00000018,0x000000ba,
0x00000031,0x00000016,0x000000b9,0x0004003d,0x00000006,0x000000bb,0x000000ba,0x00060041,
0x00000018,0x000000bc,0x000000a1,0x00000016,0x000000b6,0x0003003e,0x000000bc,0x000000bb,
0x00050041,0x00000025,0x000000bd,0x00000023,0x00000060,0x0004003d,0x00000006,0x000000be,
0x000000bd,0x00050080,0x00000006,0x000000c0,0x000000be,0x000000bf,0x00050041,0x00000025,
0x000000c1,0x00000023,0x00000016,0x0004003d,0x00000006,0x000000c2,0x000000c1,0x00050080,
0x00000006,0x000000c3,0x000000c2,0x000000bf,0x00060041,0x00000018,0x000000c4,0x00000031,
0x00000016,0x000000c3,0x0004003d,0x00000006,0x000000c5,0x000000c4,0x00060041,0x00000018,
0x000000c6,0x000000a1,0x00000016,0x000000c0,0x0003003e,0x000000c6,0x000000c5,0x000100fd,
0x00010038,0x00050036,0x00000006,0x0000000a,0x00000000,0x00000008,0x00030037,0x00000007,
0x00000009,0x000200f8,0x0000000b,0x0004003d,0x00000006,0x00000017,0x00000009,0x00060041,
0x00000018,0x00000019,0x00000014,0x00000016,0x00000017,0x0004003d,0x00000006,0x0000001a,
0x00000019,0x000200fe,0x0000001a,0x00010038,0x00050036,0x00000002,0x0000000f,0x00000000,
0x0000000c,0x00030037,0x00000007,0x0000000d,0x00030037,0x00000007,0x0000000e,0x000200f8,
0x00000010,0x00050041,0x00000025,0x00000026,0x00000023,0x00000024,0x0004003d,0x00000006,
0x00000027,0x00000026,0x0004003d,0x00000006,0x00000028,0x0000000d,0x00050080,0x00000006,
0x00000029,0x00000027,0x00000028,0x0004003d,0x00000006,0x0000002a,0x0000000e,0x00060041,
0x00000018,0x0000002b,0x00000020,0x00000016,0x00000029,0x0003003e,0x0000002b,0x0000002a,
0x000100fd,0x00010038
0x65646e69,0x00000078,0x00040005,0x0000000e,0x756c6176,0x00000065,0x00050005,0x00000011,
0x42637273,0x6b636f6c,0x00000000,0x00030005,0x00000013,0x00637273,0x00050006,0x00000013,
0x00000000,0x44637273,0x00617461,0x00030005,0x00000015,0x00000000,0x00050005,0x0000001e,
0x53637273,0x74666968,0x00000000,0x00040005,0x00000024,0x756c6176,0x00000065,0x00050005,
0x0000002d,0x49747364,0x7865646e,0x00000000,0x00060005,0x0000002e,0x68737550,0x736e6f43,
0x746e6174,0x00000073,0x00070006,0x0000002e,0x00000000,0x4f646d63,0x65736666,0x76694474,
0x00000034,0x00080006,0x0000002e,0x00000001,0x43747364,0x664f646d,0x74657366,0x34766944,
0x00000000,0x00070006,0x0000002e,0x00000002,0x4f747364,0x65736666,0x76694474,0x00000034,
0x00080006,0x0000002e,0x00000003,0x65527369,0x72617473,0x616e4574,0x64656c62,0x00000000,
0x00030005,0x00000030,0x00000000,0x00050005,0x00000038,0x42637273,0x6b636f6c,0x00000000,
0x00030005,0x0000003a,0x00747364,0x00050006,0x0000003a,0x00000000,0x44747364,0x00617461,
0x00030005,0x0000003c,0x00000000,0x00050005,0x00000040,0x53637273,0x74666968,0x00000000,
0x00050005,0x00000053,0x65646e69,0x756f4378,0x0000746e,0x00030005,0x00000055,0x00646d63,
0x00050006,0x00000055,0x00000000,0x44646d63,0x00617461,0x00030005,0x00000057,0x00000000,
0x00050005,0x0000005c,0x73726966,0x646e4974,0x00007865,0x00050005,0x00000063,0x49646e65,
0x7865646e,0x00000000,0x00080005,0x00000069,0x475f6c67,0x61626f6c,0x766e496c,0x7461636f,
0x496e6f69,0x00000044,0x00060005,0x00000073,0x6b726f77,0x43676e69,0x746e756f,0x00000000,
0x00040005,0x00000074,0x49637273,0x00007864,0x00070005,0x00000076,0x69646e69,0x52736563,
0x69616d65,0x676e696e,0x00000000,0x00050005,0x00000078,0x656e696c,0x657a6953,0x00000000,
0x00060005,0x00000079,0x73726966,0x646e4974,0x61567865,0x0065756c,0x00060005,0x00000081,
0x74736572,0x56747261,0x65756c61,0x00000000,0x00050005,0x00000082,0x65646e69,0x6c615678,
0x00006575,0x00040005,0x00000085,0x61726170,0x0000006d,0x00040005,0x0000009e,0x61726170,
0x0000006d,0x00040005,0x0000009f,0x61726170,0x0000006d,0x00040005,0x000000a8,0x61726170,
0x0000006d,0x00040005,0x000000a9,0x61726170,0x0000006d,0x00040005,0x000000ad,0x61726170,
0x0000006d,0x00040005,0x000000af,0x61726170,0x0000006d,0x00040005,0x000000ba,0x61726170,
0x0000006d,0x00040005,0x000000bc,0x61726170,0x0000006d,0x00040005,0x000000c2,0x43747364,
0x0000646d,0x00060006,0x000000c2,0x00000000,0x43747364,0x6144646d,0x00006174,0x00030005,
0x000000c4,0x00000000,0x00040047,0x00000012,0x00000006,0x00000004,0x00040048,0x00000013,
0x00000000,0x00000018,0x00050048,0x00000013,0x00000000,0x00000023,0x00000000,0x00030047,
0x00000013,0x00000003,0x00040047,0x00000015,0x00000022,0x00000000,0x00040047,0x00000015,
0x00000021,0x00000001,0x00050048,0x0000002e,0x00000000,0x00000023,0x00000000,0x00050048,
0x0000002e,0x00000001,0x00000023,0x00000004,0x00050048,0x0000002e,0x00000002,0x00000023,
0x00000008,0x00050048,0x0000002e,0x00000003,0x00000023,0x0000000c,0x00030047,0x0000002e,
0x00000002,0x00040047,0x00000039,0x00000006,0x00000004,0x00050048,0x0000003a,0x00000000,
0x00000023,0x00000000,0x00030047,0x0000003a,0x00000003,0x00040047,0x0000003c,0x00000022,
0x00000000,0x00040047,0x0000003c,0x00000021,0x00000000,0x00040047,0x00000054,0x00000006,
0x00000004,0x00040048,0x00000055,0x00000000,0x00000018,0x00050048,0x00000055,0x00000000,
0x00000023,0x00000000,0x00030047,0x00000055,0x00000003,0x00040047,0x00000057,0x00000022,
0x00000000,0x00040047,0x00000057,0x00000021,0x00000002,0x00040047,0x00000069,0x0000000b,
0x0000001c,0x00040047,0x000000c1,0x00000006,0x00000004,0x00050048,0x000000c2,0x00000000,
0x00000023,0x00000000,0x00030047,0x000000c2,0x00000003,0x00040047,0x000000c4,0x00000022,
0x00000000,0x00040047,0x000000c4,0x00000021,0x00000003,0x00040047,0x000000eb,0x0000000b,
0x00000019,0x00020013,0x00000002,0x00030021,0x00000003,0x00000002,0x00040015,0x00000006,
0x00000020,0x00000000,0x00040020,0x00000007,0x00000007,0x00000006,0x00040021,0x00000008,
0x00000006,0x00000007,0x00050021,0x0000000c,0x00000002,0x00000007,0x00000007,0x0003001d,
0x00000012,0x00000006,0x0003001e,0x00000013,0x00000012,0x00040020,0x00000014,0x00000002,
0x00000013,0x0004003b,0x00000014,0x00000015,0x00000002,0x00040015,0x00000016,0x00000020,
0x00000001,0x0004002b,0x00000016,0x00000017,0x00000000,0x0004002b,0x00000016,0x00000019,
0x00000001,0x00040020,0x0000001b,0x00000002,0x00000006,0x0004002b,0x00000006,0x00000020,
0x00000001,0x0004002b,0x00000016,0x00000022,0x00000004,0x0004002b,0x00000006,0x00000028,
0x0000ffff,0x0006001e,0x0000002e,0x00000006,0x00000006,0x00000006,0x00000006,0x00040020,
0x0000002f,0x00000009,0x0000002e,0x0004003b,0x0000002f,0x00000030,0x00000009,0x0004002b,
0x00000016,0x00000031,0x00000002,0x00040020,0x00000032,0x00000009,0x00000006,0x0003001d,
0x00000039,0x00000006,0x0003001e,0x0000003a,0x00000039,0x00040020,0x0000003b,0x00000002,
0x0000003a,0x0004003b,0x0000003b,0x0000003c,0x00000002,0x0004002b,0x00000016,0x00000044,
0x0000ffff,0x0003001d,0x00000054,0x00000006,0x0003001e,0x00000055,0x00000054,0x00040020,
0x00000056,0x00000002,0x00000055,0x0004003b,0x00000056,0x00000057,0x00000002,0x0004002b,
0x00000006,0x0000005f,0x00000002,0x00040017,0x00000067,0x00000006,0x00000003,0x00040020,
0x00000068,0x00000001,0x00000067,0x0004003b,0x00000068,0x00000069,0x00000001,0x0004002b,
0x00000006,0x0000006a,0x00000000,0x00040020,0x0000006b,0x00000001,0x00000006,0x00020014,
0x0000006e,0x0004002b,0x00000016,0x0000008e,0x00000003,0x0003001d,0x000000c1,0x00000006,
0x0003001e,0x000000c2,0x000000c1,0x00040020,0x000000c3,0x00000002,0x000000c2,0x0004003b,
0x000000c3,0x000000c4,0x00000002,0x0004002b,0x00000006,0x000000d8,0x00000003,0x0004002b,
0x00000006,0x000000e2,0x00000004,0x0004002b,0x00000006,0x000000ea,0x00000040,0x0006002c,
0x00000067,0x000000eb,0x000000ea,0x00000020,0x00000020,0x00050036,0x00000002,0x00000004,
0x00000000,0x00000003,0x000200f8,0x00000005,0x0004003b,0x00000007,0x00000053,0x00000007,
0x0004003b,0x00000007,0x0000005c,0x00000007,0x0004003b,0x00000007,0x00000063,0x00000007,
0x0004003b,0x00000007,0x00000073,0x00000007,0x0004003b,0x00000007,0x00000074,0x00000007,
0x0004003b,0x00000007,0x00000076,0x00000007,0x0004003b,0x00000007,0x00000078,0x00000007,
0x0004003b,0x00000007,0x00000079,0x00000007,0x0004003b,0x00000007,0x00000081,0x00000007,
0x0004003b,0x00000007,0x00000082,0x00000007,0x0004003b,0x00000007,0x00000085,0x00000007,
0x0004003b,0x00000007,0x0000009e,0x00000007,0x0004003b,0x00000007,0x0000009f,0x00000007,
0x0004003b,0x00000007,0x000000a8,0x00000007,0x0004003b,0x00000007,0x000000a9,0x00000007,
0x0004003b,0x00000007,0x000000ad,0x00000007,0x0004003b,0x00000007,0x000000af,0x00000007,
0x0004003b,0x00000007,0x000000ba,0x00000007,0x0004003b,0x00000007,0x000000bc,0x00000007,
0x00050041,0x00000032,0x00000058,0x00000030,0x00000017,0x0004003d,0x00000006,0x00000059,
0x00000058,0x00060041,0x0000001b,0x0000005a,0x00000057,0x00000017,0x00000059,0x0004003d,
0x00000006,0x0000005b,0x0000005a,0x0003003e,0x00000053,0x0000005b,0x00050041,0x00000032,
0x0000005d,0x00000030,0x00000017,0x0004003d,0x00000006,0x0000005e,0x0000005d,0x00050080,
0x00000006,0x00000060,0x0000005e,0x0000005f,0x00060041,0x0000001b,0x00000061,0x00000057,
0x00000017,0x00000060,0x0004003d,0x00000006,0x00000062,0x00000061,0x0003003e,0x0000005c,
0x00000062,0x0004003d,0x00000006,0x00000064,0x0000005c,0x0004003d,0x00000006,0x00000065,
0x00000053,0x00050080,0x00000006,0x00000066,0x00000064,0x00000065,0x0003003e,0x00000063,
0x00000066,0x00050041,0x0000006b,0x0000006c,0x00000069,0x0000006a,0x0004003d,0x00000006,
0x0000006d,0x0000006c,0x000500ae,0x0000006e,0x0000006f,0x0000006d,0x00000020,0x000300f7,
0x00000071,0x00000000,0x000400fa,0x0000006f,0x00000070,0x00000071,0x000200f8,0x00000070,
0x000100fd,0x000200f8,0x00000071,0x0003003e,0x00000073,0x0000006a,0x0004003d,0x00000006,
0x00000075,0x0000005c,0x0003003e,0x00000074,0x00000075,0x0004003d,0x00000006,0x00000077,
0x00000053,0x0003003e,0x00000076,0x00000077,0x0003003e,0x00000078,0x0000006a,0x0003003e,
0x00000079,0x0000006a,0x000200f9,0x0000007a,0x000200f8,0x0000007a,0x000400f6,0x0000007c,
0x0000007d,0x00000000,0x000200f9,0x0000007e,0x000200f8,0x0000007e,0x0004003d,0x00000006,
0x0000007f,0x00000076,0x000500ac,0x0000006e,0x00000080,0x0000007f,0x0000006a,0x000400fa,
0x00000080,0x0000007b,0x0000007c,0x000200f8,0x0000007b,0x0003003e,0x00000081,0x00000028,
0x0004003d,0x00000006,0x00000083,0x00000074,0x00050080,0x00000006,0x00000084,0x00000083,
0x00000019,0x0003003e,0x00000074,0x00000084,0x0003003e,0x00000085,0x00000083,0x00050039,
0x00000006,0x00000086,0x0000000a,0x00000085,0x0003003e,0x00000082,0x00000086,0x0004003d,
0x00000006,0x00000087,0x00000078,0x000500aa,0x0000006e,0x00000088,0x00000087,0x0000006a,
0x000300f7,0x0000008a,0x00000000,0x000400fa,0x00000088,0x00000089,0x0000008a,0x000200f8,
0x00000089,0x0004003d,0x00000006,0x0000008b,0x00000082,0x0003003e,0x00000079,0x0000008b,
0x000200f9,0x0000008a,0x000200f8,0x0000008a,0x0004003d,0x00000006,0x0000008c,0x00000076,
0x00050082,0x00000006,0x0000008d,0x0000008c,0x00000019,0x0003003e,0x00000076,0x0000008d,
0x00050041,0x00000032,0x0000008f,0x00000030,0x0000008e,0x0004003d,0x00000006,0x00000090,
0x0000008f,0x000500aa,0x0000006e,0x00000091,0x00000090,0x00000020,0x0004003d,0x00000006,
0x00000092,0x00000082,0x0004003d,0x00000006,0x00000093,0x00000081,0x000500aa,0x0000006e,
0x00000094,0x00000092,0x00000093,0x000500a7,0x0000006e,0x00000095,0x00000091,0x00000094,
0x000300f7,0x00000097,0x00000000,0x000400fa,0x00000095,0x00000096,0x000000ac,0x000200f8,
0x00000096,0x0004003d,0x00000006,0x00000098,0x00000078,0x000500ac,0x0000006e,0x00000099,
0x00000098,0x00000020,0x000300f7,0x0000009b,0x00000000,0x000400fa,0x00000099,0x0000009a,
0x0000009b,0x000200f8,0x0000009a,0x0004003d,0x00000006,0x0000009c,0x00000073,0x00050080,
0x00000006,0x0000009d,0x0000009c,0x00000019,0x0003003e,0x00000073,0x0000009d,0x0003003e,
0x0000009e,0x0000009c,0x0004003d,0x00000006,0x000000a0,0x00000079,0x0003003e,0x0000009f,
0x000000a0,0x00060039,0x00000002,0x000000a1,0x0000000f,0x0000009e,0x0000009f,0x000200f9,
0x0000009b,0x000200f8,0x0000009b,0x0004003d,0x00000006,0x000000a2,0x00000078,0x000500ac,
0x0000006e,0x000000a3,0x000000a2,0x0000006a,0x000300f7,0x000000a5,0x00000000,0x000400fa,
0x000000a3,0x000000a4,0x000000a5,0x000200f8,0x000000a4,0x0004003d,0x00000006,0x000000a6,
0x00000073,0x00050080,0x00000006,0x000000a7,0x000000a6,0x00000019,0x0003003e,0x00000073,
0x000000a7,0x0003003e,0x000000a8,0x000000a6,0x0004003d,0x00000006,0x000000aa,0x00000081,
0x0003003e,0x000000a9,0x000000aa,0x00060039,0x00000002,0x000000ab,0x0000000f,0x000000a8,
0x000000a9,0x000200f9,0x000000a5,0x000200f8,0x000000a5,0x0003003e,0x00000078,0x0000006a,
0x000200f9,0x00000097,0x000200f8,0x000000ac,0x0004003d,0x00000006,0x000000ae,0x00000073,
0x0003003e,0x000000ad,0x000000ae,0x0004003d,0x00000006,0x000000b0,0x00000082,0x0003003e,
0x000000af,0x000000b0,0x00060039,0x00000002,0x000000b1,0x0000000f,0x000000ad,0x000000af,
0x0004003d,0x00000006,0x000000b2,0x00000073,0x00050080,0x00000006,0x000000b3,0x000000b2,
0x00000019,0x0003003e,0x00000073,0x000000b3,0x0004003d,0x00000006,0x000000b4,0x00000078,
0x00050080,0x00000006,0x000000b5,0x000000b4,0x00000019,0x0003003e,0x00000078,0x000000b5,
0x000200f9,0x00000097,0x000200f8,0x00000097,0x000200f9,0x0000007d,0x000200f8,0x0000007d,
0x000200f9,0x0000007a,0x000200f8,0x0000007c,0x0004003d,0x00000006,0x000000b6,0x00000078,
0x000500ac,0x0000006e,0x000000b7,0x000000b6,0x00000020,0x000300f7,0x000000b9,0x00000000,
0x000400fa,0x000000b7,0x000000b8,0x000000b9,0x000200f8,0x000000b8,0x0004003d,0x00000006,
0x000000bb,0x00000073,0x0003003e,0x000000ba,0x000000bb,0x0004003d,0x00000006,0x000000bd,
0x00000079,0x0003003e,0x000000bc,0x000000bd,0x00060039,0x00000002,0x000000be,0x0000000f,
0x000000ba,0x000000bc,0x0004003d,0x00000006,0x000000bf,0x00000073,0x00050080,0x00000006,
0x000000c0,0x000000bf,0x00000019,0x0003003e,0x00000073,0x000000c0,0x000200f9,0x000000b9,
0x000200f8,0x000000b9,0x00050041,0x00000032,0x000000c5,0x00000030,0x00000019,0x0004003d,
0x00000006,0x000000c6,0x000000c5,0x0004003d,0x00000006,0x000000c7,0x00000073,0x00060041,
0x0000001b,0x000000c8,0x000000c4,0x00000017,0x000000c6,0x0003003e,0x000000c8,0x000000c7,
0x00050041,0x00000032,0x000000c9,0x00000030,0x00000019,0x0004003d,0x00000006,0x000000ca,
0x000000c9,0x00050080,0x00000006,0x000000cb,0x000000ca,0x00000020,0x00050041,0x00000032,
0x000000cc,0x00000030,0x00000017,0x0004003d,0x00000006,0x000000cd,0x000000cc,0x00050080,
0x00000006,0x000000ce,0x000000cd,0x00000020,0x00060041,0x0000001b,0x000000cf,0x00000057,
0x00000017,0x000000ce,0x0004003d,0x00000006,0x000000d0,0x000000cf,0x00060041,0x0000001b,
0x000000d1,0x000000c4,0x00000017,0x000000cb,0x0003003e,0x000000d1,0x000000d0,0x00050041,
0x00000032,0x000000d2,0x00000030,0x00000019,0x0004003d,0x00000006,0x000000d3,0x000000d2,
0x00050080,0x00000006,0x000000d4,0x000000d3,0x0000005f,0x00060041,0x0000001b,0x000000d5,
0x000000c4,0x00000017,0x000000d4,0x0003003e,0x000000d5,0x0000006a,0x00050041,0x00000032,
0x000000d6,0x00000030,0x00000019,0x0004003d,0x00000006,0x000000d7,0x000000d6,0x00050080,
0x00000006,0x000000d9,0x000000d7,0x000000d8,0x00050041,0x00000032,0x000000da,0x00000030,
0x00000017,0x0004003d,0x00000006,0x000000db,0x000000da,0x00050080,0x00000006,0x000000dc,
0x000000db,0x000000d8,0x00060041,0x0000001b,0x000000dd,0x00000057,0x00000017,0x000000dc,
0x0004003d,0x00000006,0x000000de,0x000000dd,0x00060041,0x0000001b,0x000000df,0x000000c4,
0x00000017,0x000000d9,0x0003003e,0x000000df,0x000000de,0x00050041,0x00000032,0x000000e0,
0x00000030,0x00000019,0x0004003d,0x00000006,0x000000e1,0x000000e0,0x00050080,0x00000006,
0x000000e3,0x000000e1,0x000000e2,0x00050041,0x00000032,0x000000e4,0x00000030,0x00000017,
0x0004003d,0x00000006,0x000000e5,0x000000e4,0x00050080,0x00000006,0x000000e6,0x000000e5,
0x000000e2,0x00060041,0x0000001b,0x000000e7,0x00000057,0x00000017,0x000000e6,0x0004003d,
0x00000006,0x000000e8,0x000000e7,0x00060041,0x0000001b,0x000000e9,0x000000c4,0x00000017,
0x000000e3,0x0003003e,0x000000e9,0x000000e8,0x000100fd,0x00010038,0x00050036,0x00000006,
0x0000000a,0x00000000,0x00000008,0x00030037,0x00000007,0x00000009,0x000200f8,0x0000000b,
0x0004003b,0x00000007,0x00000011,0x00000007,0x0004003b,0x00000007,0x0000001e,0x00000007,
0x0004003b,0x00000007,0x00000024,0x00000007,0x0004003d,0x00000006,0x00000018,0x00000009,
0x000500c2,0x00000006,0x0000001a,0x00000018,0x00000019,0x00060041,0x0000001b,0x0000001c,
0x00000015,0x00000017,0x0000001a,0x0004003d,0x00000006,0x0000001d,0x0000001c,0x0003003e,
0x00000011,0x0000001d,0x0004003d,0x00000006,0x0000001f,0x00000009,0x000500c7,0x00000006,
0x00000021,0x0000001f,0x00000020,0x000500c4,0x00000006,0x00000023,0x00000021,0x00000022,
0x0003003e,0x0000001e,0x00000023,0x0004003d,0x00000006,0x00000025,0x00000011,0x0004003d,
0x00000006,0x00000026,0x0000001e,0x000500c2,0x00000006,0x00000027,0x00000025,0x00000026,
0x000500c7,0x00000006,0x00000029,0x00000027,0x00000028,0x0003003e,0x00000024,0x00000029,
0x0004003d,0x00000006,0x0000002a,0x00000024,0x000200fe,0x0000002a,0x00010038,0x00050036,
0x00000002,0x0000000f,0x00000000,0x0000000c,0x00030037,0x00000007,0x0000000d,0x00030037,
0x00000007,0x0000000e,0x000200f8,0x00000010,0x0004003b,0x00000007,0x0000002d,0x00000007,
0x0004003b,0x00000007,0x00000038,0x00000007,0x0004003b,0x00000007,0x00000040,0x00000007,
0x00050041,0x00000032,0x00000033,0x00000030,0x00000031,0x0004003d,0x00000006,0x00000034,
0x00000033,0x0004003d,0x00000006,0x00000035,0x0000000d,0x000500c2,0x00000006,0x00000036,
0x00000035,0x00000019,0x00050080,0x00000006,0x00000037,0x00000034,0x00000036,0x0003003e,
0x0000002d,0x00000037,0x0004003d,0x00000006,0x0000003d,0x0000002d,0x00060041,0x0000001b,
0x0000003e,0x0000003c,0x00000017,0x0000003d,0x0004003d,0x00000006,0x0000003f,0x0000003e,
0x0003003e,0x00000038,0x0000003f,0x0004003d,0x00000006,0x00000041,0x0000000d,0x000500c7,
0x00000006,0x00000042,0x00000041,0x00000020,0x000500c4,0x00000006,0x00000043,0x00000042,
0x00000022,0x0003003e,0x00000040,0x00000043,0x0004003d,0x00000006,0x00000045,0x00000040,
0x000500c4,0x00000016,0x00000046,0x00000044,0x00000045,0x000400c8,0x00000016,0x00000047,
0x00000046,0x0004007c,0x00000006,0x00000048,0x00000047,0x0004003d,0x00000006,0x00000049,
0x00000038,0x000500c7,0x00000006,0x0000004a,0x00000049,0x00000048,0x0003003e,0x00000038,
0x0000004a,0x0004003d,0x00000006,0x0000004b,0x0000000e,0x0004003d,0x00000006,0x0000004c,
0x00000040,0x000500c4,0x00000006,0x0000004d,0x0000004b,0x0000004c,0x0004003d,0x00000006,
0x0000004e,0x00000038,0x000500c5,0x00000006,0x0000004f,0x0000004e,0x0000004d,0x0003003e,
0x00000038,0x0000004f,0x0004003d,0x00000006,0x00000050,0x0000002d,0x0004003d,0x00000006,
0x00000051,0x00000038,0x00060041,0x0000001b,0x00000052,0x0000003c,0x00000017,0x00000050,
0x0003003e,0x00000052,0x00000051,0x000100fd,0x00010038
};
// Generated from:
......@@ -217,15 +243,29 @@ const uint32_t kConvertIndexIndirectLineLoop_comp_00000001[] = {
// uint GetIndexValue(uint index)
// {
//
// return srcData[index];
// uint srcBlock = srcData[index >> 1];
//
// uint srcShift =((index & 0x1)<< 4);
//
// uint value =(srcBlock >> srcShift)& 0xffff;
// return value;
//
// }
//
// void PutIndexValue(uint index, uint value)
// {
//
// dstData[dstOffsetDiv4 + index]= value;
// return;
// uint dstIndex = dstOffsetDiv4 +(index >> 1);
//
// uint srcBlock = dstData[dstIndex];
//
// uint srcShift =((index & 0x1)<< 4);
//
// srcBlock &= ~(0xffff << srcShift);
//
// srcBlock |= value << srcShift;
//
// dstData[dstIndex]= srcBlock;
//
// }
//
......@@ -247,9 +287,7 @@ const uint32_t kConvertIndexIndirectLineLoop_comp_00000001[] = {
// while(indicesRemaining > 0)
// {
// uint indexValue;
//
// uint restartValue = 0xffffffff;
//
// uint restartValue = 0xffff;
// indexValue = GetIndexValue(srcIdx ++);
// if(lineSize == 0)
// {
......
// 7.12.3226
#pragma once
const uint32_t kConvertIndexIndirectLineLoop_comp_00000002[] = {
0x07230203,0x00010000,0x00080007,0x000000c8,0x00000000,0x00020011,0x00000001,0x0006000b,
0x00000001,0x4c534c47,0x6474732e,0x3035342e,0x00000000,0x0003000e,0x00000000,0x00000001,
0x0006000f,0x00000005,0x00000004,0x6e69616d,0x00000000,0x00000042,0x00060010,0x00000004,
0x00000011,0x00000040,0x00000001,0x00000001,0x00030003,0x00000002,0x000001c2,0x00040005,
0x00000004,0x6e69616d,0x00000000,0x00070005,0x0000000a,0x49746547,0x7865646e,0x756c6156,
0x31752865,0x0000003b,0x00040005,0x00000009,0x65646e69,0x00000078,0x00080005,0x0000000f,
0x49747550,0x7865646e,0x756c6156,0x31752865,0x3b31753b,0x00000000,0x00040005,0x0000000d,
0x65646e69,0x00000078,0x00040005,0x0000000e,0x756c6176,0x00000065,0x00030005,0x00000012,
0x00637273,0x00050006,0x00000012,0x00000000,0x44637273,0x00617461,0x00030005,0x00000014,
0x00000000,0x00030005,0x0000001e,0x00747364,0x00050006,0x0000001e,0x00000000,0x44747364,
0x00617461,0x00030005,0x00000020,0x00000000,0x00060005,0x00000021,0x68737550,0x736e6f43,
0x746e6174,0x00000073,0x00070006,0x00000021,0x00000000,0x4f646d63,0x65736666,0x76694474,
0x00000034,0x00080006,0x00000021,0x00000001,0x43747364,0x664f646d,0x74657366,0x34766944,
0x00000000,0x00070006,0x00000021,0x00000002,0x4f747364,0x65736666,0x76694474,0x00000034,
0x00080006,0x00000021,0x00000003,0x65527369,0x72617473,0x616e4574,0x64656c62,0x00000000,
0x00030005,0x00000023,0x00000000,0x00050005,0x0000002c,0x65646e69,0x756f4378,0x0000746e,
0x00030005,0x0000002e,0x00646d63,0x00050006,0x0000002e,0x00000000,0x44646d63,0x00617461,
0x00030005,0x00000030,0x00000000,0x00050005,0x00000035,0x73726966,0x646e4974,0x00007865,
0x00050005,0x0000003c,0x49646e65,0x7865646e,0x00000000,0x00080005,0x00000042,0x475f6c67,
0x61626f6c,0x766e496c,0x7461636f,0x496e6f69,0x00000044,0x00060005,0x0000004d,0x6b726f77,
0x43676e69,0x746e756f,0x00000000,0x00040005,0x0000004e,0x49637273,0x00007864,0x00070005,
0x00000050,0x69646e69,0x52736563,0x69616d65,0x676e696e,0x00000000,0x00050005,0x00000052,
0x656e696c,0x657a6953,0x00000000,0x00060005,0x00000053,0x73726966,0x646e4974,0x61567865,
0x0065756c,0x00060005,0x0000005b,0x74736572,0x56747261,0x65756c61,0x00000000,0x00050005,
0x0000005d,0x65646e69,0x6c615678,0x00006575,0x00040005,0x00000061,0x61726170,0x0000006d,
0x00040005,0x0000007a,0x61726170,0x0000006d,0x00040005,0x0000007b,0x61726170,0x0000006d,
0x00040005,0x00000084,0x61726170,0x0000006d,0x00040005,0x00000085,0x61726170,0x0000006d,
0x00040005,0x00000089,0x61726170,0x0000006d,0x00040005,0x0000008b,0x61726170,0x0000006d,
0x00040005,0x00000096,0x61726170,0x0000006d,0x00040005,0x00000098,0x61726170,0x0000006d,
0x00040005,0x0000009e,0x43747364,0x0000646d,0x00060006,0x0000009e,0x00000000,0x43747364,
0x6144646d,0x00006174,0x00030005,0x000000a0,0x00000000,0x00040047,0x00000011,0x00000006,
0x00000004,0x00040048,0x00000012,0x00000000,0x00000018,0x00050048,0x00000012,0x00000000,
0x00000023,0x00000000,0x00030047,0x00000012,0x00000003,0x00040047,0x00000014,0x00000022,
0x00000000,0x00040047,0x00000014,0x00000021,0x00000001,0x00040047,0x0000001d,0x00000006,
0x00000004,0x00050048,0x0000001e,0x00000000,0x00000023,0x00000000,0x00030047,0x0000001e,
0x00000003,0x00040047,0x00000020,0x00000022,0x00000000,0x00040047,0x00000020,0x00000021,
0x00000000,0x00050048,0x00000021,0x00000000,0x00000023,0x00000000,0x00050048,0x00000021,
0x00000001,0x00000023,0x00000004,0x00050048,0x00000021,0x00000002,0x00000023,0x00000008,
0x00050048,0x00000021,0x00000003,0x00000023,0x0000000c,0x00030047,0x00000021,0x00000002,
0x00040047,0x0000002d,0x00000006,0x00000004,0x00040048,0x0000002e,0x00000000,0x00000018,
0x00050048,0x0000002e,0x00000000,0x00000023,0x00000000,0x00030047,0x0000002e,0x00000003,
0x00040047,0x00000030,0x00000022,0x00000000,0x00040047,0x00000030,0x00000021,0x00000002,
0x00040047,0x00000042,0x0000000b,0x0000001c,0x00040047,0x0000009d,0x00000006,0x00000004,
0x00050048,0x0000009e,0x00000000,0x00000023,0x00000000,0x00030047,0x0000009e,0x00000003,
0x00040047,0x000000a0,0x00000022,0x00000000,0x00040047,0x000000a0,0x00000021,0x00000003,
0x00040047,0x000000c7,0x0000000b,0x00000019,0x00020013,0x00000002,0x00030021,0x00000003,
0x00000002,0x00040015,0x00000006,0x00000020,0x00000000,0x00040020,0x00000007,0x00000007,
0x00000006,0x00040021,0x00000008,0x00000006,0x00000007,0x00050021,0x0000000c,0x00000002,
0x00000007,0x00000007,0x0003001d,0x00000011,0x00000006,0x0003001e,0x00000012,0x00000011,
0x00040020,0x00000013,0x00000002,0x00000012,0x0004003b,0x00000013,0x00000014,0x00000002,
0x00040015,0x00000015,0x00000020,0x00000001,0x0004002b,0x00000015,0x00000016,0x00000000,
0x00040020,0x00000018,0x00000002,0x00000006,0x0003001d,0x0000001d,0x00000006,0x0003001e,
0x0000001e,0x0000001d,0x00040020,0x0000001f,0x00000002,0x0000001e,0x0004003b,0x0000001f,
0x00000020,0x00000002,0x0006001e,0x00000021,0x00000006,0x00000006,0x00000006,0x00000006,
0x00040020,0x00000022,0x00000009,0x00000021,0x0004003b,0x00000022,0x00000023,0x00000009,
0x0004002b,0x00000015,0x00000024,0x00000002,0x00040020,0x00000025,0x00000009,0x00000006,
0x0003001d,0x0000002d,0x00000006,0x0003001e,0x0000002e,0x0000002d,0x00040020,0x0000002f,
0x00000002,0x0000002e,0x0004003b,0x0000002f,0x00000030,0x00000002,0x0004002b,0x00000006,
0x00000038,0x00000002,0x00040017,0x00000040,0x00000006,0x00000003,0x00040020,0x00000041,
0x00000001,0x00000040,0x0004003b,0x00000041,0x00000042,0x00000001,0x0004002b,0x00000006,
0x00000043,0x00000000,0x00040020,0x00000044,0x00000001,0x00000006,0x0004002b,0x00000006,
0x00000047,0x00000001,0x00020014,0x00000048,0x0004002b,0x00000006,0x0000005c,0xffffffff,
0x0004002b,0x00000015,0x0000005f,0x00000001,0x0004002b,0x00000015,0x0000006a,0x00000003,
0x0003001d,0x0000009d,0x00000006,0x0003001e,0x0000009e,0x0000009d,0x00040020,0x0000009f,
0x00000002,0x0000009e,0x0004003b,0x0000009f,0x000000a0,0x00000002,0x0004002b,0x00000006,
0x000000b4,0x00000003,0x0004002b,0x00000006,0x000000be,0x00000004,0x0004002b,0x00000006,
0x000000c6,0x00000040,0x0006002c,0x00000040,0x000000c7,0x000000c6,0x00000047,0x00000047,
0x00050036,0x00000002,0x00000004,0x00000000,0x00000003,0x000200f8,0x00000005,0x0004003b,
0x00000007,0x0000002c,0x00000007,0x0004003b,0x00000007,0x00000035,0x00000007,0x0004003b,
0x00000007,0x0000003c,0x00000007,0x0004003b,0x00000007,0x0000004d,0x00000007,0x0004003b,
0x00000007,0x0000004e,0x00000007,0x0004003b,0x00000007,0x00000050,0x00000007,0x0004003b,
0x00000007,0x00000052,0x00000007,0x0004003b,0x00000007,0x00000053,0x00000007,0x0004003b,
0x00000007,0x0000005b,0x00000007,0x0004003b,0x00000007,0x0000005d,0x00000007,0x0004003b,
0x00000007,0x00000061,0x00000007,0x0004003b,0x00000007,0x0000007a,0x00000007,0x0004003b,
0x00000007,0x0000007b,0x00000007,0x0004003b,0x00000007,0x00000084,0x00000007,0x0004003b,
0x00000007,0x00000085,0x00000007,0x0004003b,0x00000007,0x00000089,0x00000007,0x0004003b,
0x00000007,0x0000008b,0x00000007,0x0004003b,0x00000007,0x00000096,0x00000007,0x0004003b,
0x00000007,0x00000098,0x00000007,0x00050041,0x00000025,0x00000031,0x00000023,0x00000016,
0x0004003d,0x00000006,0x00000032,0x00000031,0x00060041,0x00000018,0x00000033,0x00000030,
0x00000016,0x00000032,0x0004003d,0x00000006,0x00000034,0x00000033,0x0003003e,0x0000002c,
0x00000034,0x00050041,0x00000025,0x00000036,0x00000023,0x00000016,0x0004003d,0x00000006,
0x00000037,0x00000036,0x00050080,0x00000006,0x00000039,0x00000037,0x00000038,0x00060041,
0x00000018,0x0000003a,0x00000030,0x00000016,0x00000039,0x0004003d,0x00000006,0x0000003b,
0x0000003a,0x0003003e,0x00000035,0x0000003b,0x0004003d,0x00000006,0x0000003d,0x00000035,
0x0004003d,0x00000006,0x0000003e,0x0000002c,0x00050080,0x00000006,0x0000003f,0x0000003d,
0x0000003e,0x0003003e,0x0000003c,0x0000003f,0x00050041,0x00000044,0x00000045,0x00000042,
0x00000043,0x0004003d,0x00000006,0x00000046,0x00000045,0x000500ae,0x00000048,0x00000049,
0x00000046,0x00000047,0x000300f7,0x0000004b,0x00000000,0x000400fa,0x00000049,0x0000004a,
0x0000004b,0x000200f8,0x0000004a,0x000100fd,0x000200f8,0x0000004b,0x0003003e,0x0000004d,
0x00000043,0x0004003d,0x00000006,0x0000004f,0x00000035,0x0003003e,0x0000004e,0x0000004f,
0x0004003d,0x00000006,0x00000051,0x0000002c,0x0003003e,0x00000050,0x00000051,0x0003003e,
0x00000052,0x00000043,0x0003003e,0x00000053,0x00000043,0x000200f9,0x00000054,0x000200f8,
0x00000054,0x000400f6,0x00000056,0x00000057,0x00000000,0x000200f9,0x00000058,0x000200f8,
0x00000058,0x0004003d,0x00000006,0x00000059,0x00000050,0x000500ac,0x00000048,0x0000005a,
0x00000059,0x00000043,0x000400fa,0x0000005a,0x00000055,0x00000056,0x000200f8,0x00000055,
0x0003003e,0x0000005b,0x0000005c,0x0004003d,0x00000006,0x0000005e,0x0000004e,0x00050080,
0x00000006,0x00000060,0x0000005e,0x0000005f,0x0003003e,0x0000004e,0x00000060,0x0003003e,
0x00000061,0x0000005e,0x00050039,0x00000006,0x00000062,0x0000000a,0x00000061,0x0003003e,
0x0000005d,0x00000062,0x0004003d,0x00000006,0x00000063,0x00000052,0x000500aa,0x00000048,
0x00000064,0x00000063,0x00000043,0x000300f7,0x00000066,0x00000000,0x000400fa,0x00000064,
0x00000065,0x00000066,0x000200f8,0x00000065,0x0004003d,0x00000006,0x00000067,0x0000005d,
0x0003003e,0x00000053,0x00000067,0x000200f9,0x00000066,0x000200f8,0x00000066,0x0004003d,
0x00000006,0x00000068,0x00000050,0x00050082,0x00000006,0x00000069,0x00000068,0x0000005f,
0x0003003e,0x00000050,0x00000069,0x00050041,0x00000025,0x0000006b,0x00000023,0x0000006a,
0x0004003d,0x00000006,0x0000006c,0x0000006b,0x000500aa,0x00000048,0x0000006d,0x0000006c,
0x00000047,0x0004003d,0x00000006,0x0000006e,0x0000005d,0x0004003d,0x00000006,0x0000006f,
0x0000005b,0x000500aa,0x00000048,0x00000070,0x0000006e,0x0000006f,0x000500a7,0x00000048,
0x00000071,0x0000006d,0x00000070,0x000300f7,0x00000073,0x00000000,0x000400fa,0x00000071,
0x00000072,0x00000088,0x000200f8,0x00000072,0x0004003d,0x00000006,0x00000074,0x00000052,
0x000500ac,0x00000048,0x00000075,0x00000074,0x00000047,0x000300f7,0x00000077,0x00000000,
0x000400fa,0x00000075,0x00000076,0x00000077,0x000200f8,0x00000076,0x0004003d,0x00000006,
0x00000078,0x0000004d,0x00050080,0x00000006,0x00000079,0x00000078,0x0000005f,0x0003003e,
0x0000004d,0x00000079,0x0003003e,0x0000007a,0x00000078,0x0004003d,0x00000006,0x0000007c,
0x00000053,0x0003003e,0x0000007b,0x0000007c,0x00060039,0x00000002,0x0000007d,0x0000000f,
0x0000007a,0x0000007b,0x000200f9,0x00000077,0x000200f8,0x00000077,0x0004003d,0x00000006,
0x0000007e,0x00000052,0x000500ac,0x00000048,0x0000007f,0x0000007e,0x00000043,0x000300f7,
0x00000081,0x00000000,0x000400fa,0x0000007f,0x00000080,0x00000081,0x000200f8,0x00000080,
0x0004003d,0x00000006,0x00000082,0x0000004d,0x00050080,0x00000006,0x00000083,0x00000082,
0x0000005f,0x0003003e,0x0000004d,0x00000083,0x0003003e,0x00000084,0x00000082,0x0004003d,
0x00000006,0x00000086,0x0000005b,0x0003003e,0x00000085,0x00000086,0x00060039,0x00000002,
0x00000087,0x0000000f,0x00000084,0x00000085,0x000200f9,0x00000081,0x000200f8,0x00000081,
0x0003003e,0x00000052,0x00000043,0x000200f9,0x00000073,0x000200f8,0x00000088,0x0004003d,
0x00000006,0x0000008a,0x0000004d,0x0003003e,0x00000089,0x0000008a,0x0004003d,0x00000006,
0x0000008c,0x0000005d,0x0003003e,0x0000008b,0x0000008c,0x00060039,0x00000002,0x0000008d,
0x0000000f,0x00000089,0x0000008b,0x0004003d,0x00000006,0x0000008e,0x0000004d,0x00050080,
0x00000006,0x0000008f,0x0000008e,0x0000005f,0x0003003e,0x0000004d,0x0000008f,0x0004003d,
0x00000006,0x00000090,0x00000052,0x00050080,0x00000006,0x00000091,0x00000090,0x0000005f,
0x0003003e,0x00000052,0x00000091,0x000200f9,0x00000073,0x000200f8,0x00000073,0x000200f9,
0x00000057,0x000200f8,0x00000057,0x000200f9,0x00000054,0x000200f8,0x00000056,0x0004003d,
0x00000006,0x00000092,0x00000052,0x000500ac,0x00000048,0x00000093,0x00000092,0x00000047,
0x000300f7,0x00000095,0x00000000,0x000400fa,0x00000093,0x00000094,0x00000095,0x000200f8,
0x00000094,0x0004003d,0x00000006,0x00000097,0x0000004d,0x0003003e,0x00000096,0x00000097,
0x0004003d,0x00000006,0x00000099,0x00000053,0x0003003e,0x00000098,0x00000099,0x00060039,
0x00000002,0x0000009a,0x0000000f,0x00000096,0x00000098,0x0004003d,0x00000006,0x0000009b,
0x0000004d,0x00050080,0x00000006,0x0000009c,0x0000009b,0x0000005f,0x0003003e,0x0000004d,
0x0000009c,0x000200f9,0x00000095,0x000200f8,0x00000095,0x00050041,0x00000025,0x000000a1,
0x00000023,0x0000005f,0x0004003d,0x00000006,0x000000a2,0x000000a1,0x0004003d,0x00000006,
0x000000a3,0x0000004d,0x00060041,0x00000018,0x000000a4,0x000000a0,0x00000016,0x000000a2,
0x0003003e,0x000000a4,0x000000a3,0x00050041,0x00000025,0x000000a5,0x00000023,0x0000005f,
0x0004003d,0x00000006,0x000000a6,0x000000a5,0x00050080,0x00000006,0x000000a7,0x000000a6,
0x00000047,0x00050041,0x00000025,0x000000a8,0x00000023,0x00000016,0x0004003d,0x00000006,
0x000000a9,0x000000a8,0x00050080,0x00000006,0x000000aa,0x000000a9,0x00000047,0x00060041,
0x00000018,0x000000ab,0x00000030,0x00000016,0x000000aa,0x0004003d,0x00000006,0x000000ac,
0x000000ab,0x00060041,0x00000018,0x000000ad,0x000000a0,0x00000016,0x000000a7,0x0003003e,
0x000000ad,0x000000ac,0x00050041,0x00000025,0x000000ae,0x00000023,0x0000005f,0x0004003d,
0x00000006,0x000000af,0x000000ae,0x00050080,0x00000006,0x000000b0,0x000000af,0x00000038,
0x00060041,0x00000018,0x000000b1,0x000000a0,0x00000016,0x000000b0,0x0003003e,0x000000b1,
0x00000043,0x00050041,0x00000025,0x000000b2,0x00000023,0x0000005f,0x0004003d,0x00000006,
0x000000b3,0x000000b2,0x00050080,0x00000006,0x000000b5,0x000000b3,0x000000b4,0x00050041,
0x00000025,0x000000b6,0x00000023,0x00000016,0x0004003d,0x00000006,0x000000b7,0x000000b6,
0x00050080,0x00000006,0x000000b8,0x000000b7,0x000000b4,0x00060041,0x00000018,0x000000b9,
0x00000030,0x00000016,0x000000b8,0x0004003d,0x00000006,0x000000ba,0x000000b9,0x00060041,
0x00000018,0x000000bb,0x000000a0,0x00000016,0x000000b5,0x0003003e,0x000000bb,0x000000ba,
0x00050041,0x00000025,0x000000bc,0x00000023,0x0000005f,0x0004003d,0x00000006,0x000000bd,
0x000000bc,0x00050080,0x00000006,0x000000bf,0x000000bd,0x000000be,0x00050041,0x00000025,
0x000000c0,0x00000023,0x00000016,0x0004003d,0x00000006,0x000000c1,0x000000c0,0x00050080,
0x00000006,0x000000c2,0x000000c1,0x000000be,0x00060041,0x00000018,0x000000c3,0x00000030,
0x00000016,0x000000c2,0x0004003d,0x00000006,0x000000c4,0x000000c3,0x00060041,0x00000018,
0x000000c5,0x000000a0,0x00000016,0x000000bf,0x0003003e,0x000000c5,0x000000c4,0x000100fd,
0x00010038,0x00050036,0x00000006,0x0000000a,0x00000000,0x00000008,0x00030037,0x00000007,
0x00000009,0x000200f8,0x0000000b,0x0004003d,0x00000006,0x00000017,0x00000009,0x00060041,
0x00000018,0x00000019,0x00000014,0x00000016,0x00000017,0x0004003d,0x00000006,0x0000001a,
0x00000019,0x000200fe,0x0000001a,0x00010038,0x00050036,0x00000002,0x0000000f,0x00000000,
0x0000000c,0x00030037,0x00000007,0x0000000d,0x00030037,0x00000007,0x0000000e,0x000200f8,
0x00000010,0x00050041,0x00000025,0x00000026,0x00000023,0x00000024,0x0004003d,0x00000006,
0x00000027,0x00000026,0x0004003d,0x00000006,0x00000028,0x0000000d,0x00050080,0x00000006,
0x00000029,0x00000027,0x00000028,0x0004003d,0x00000006,0x0000002a,0x0000000e,0x00060041,
0x00000018,0x0000002b,0x00000020,0x00000016,0x00000029,0x0003003e,0x0000002b,0x0000002a,
0x000100fd,0x00010038
};
// Generated from:
//
// #version 450 core
//
// layout(local_size_x = 64, local_size_y = 1, local_size_z = 1)in;
//
// layout(set = 0, binding = 0)buffer dst
// {
//
// uint dstData[];
// };
//
// layout(set = 0, binding = 1)readonly buffer src
// {
//
// uint srcData[];
// };
//
// layout(set = 0, binding = 2)readonly buffer cmd
// {
//
// uint cmdData[];
// };
//
// layout(set = 0, binding = 3)buffer dstCmd
// {
//
// uint dstCmdData[];
// };
//
// layout(push_constant)uniform PushConstants
// {
//
// uint cmdOffsetDiv4;
//
// uint dstCmdOffsetDiv4;
//
// uint dstOffsetDiv4;
//
// uint isRestartEnabled;
// };
//
// uint GetIndexValue(uint index)
// {
//
// return srcData[index];
//
// }
//
// void PutIndexValue(uint index, uint value)
// {
//
// dstData[dstOffsetDiv4 + index]= value;
//
// }
//
// void main()
// {
//
// uint indexCount = cmdData[cmdOffsetDiv4];
// uint firstIndex = cmdData[cmdOffsetDiv4 + 2];
// uint endIndex = firstIndex + indexCount;
//
// if(gl_GlobalInvocationID . x >= 1)
// return;
//
// uint workingCount = 0;
// uint srcIdx = firstIndex;
// uint indicesRemaining = indexCount;
// uint lineSize = 0;
// uint firstIndexValue = 0;
// while(indicesRemaining > 0)
// {
// uint indexValue;
// uint restartValue = 0xffffffff;
// indexValue = GetIndexValue(srcIdx ++);
// if(lineSize == 0)
// {
// firstIndexValue = indexValue;
// }
// indicesRemaining --;
// if((isRestartEnabled == 1)&&(indexValue == restartValue))
// {
//
// if(lineSize > 1)
// {
// PutIndexValue(workingCount ++, firstIndexValue);
// }
// if(lineSize > 0)
// {
// PutIndexValue(workingCount ++, restartValue);
// }
// lineSize = 0;
// } else {
// PutIndexValue(workingCount, indexValue);
// workingCount ++;
// lineSize ++;
// }
// }
// if(lineSize > 1)
// {
// PutIndexValue(workingCount, firstIndexValue);
// workingCount ++;
// }
//
// dstCmdData[dstCmdOffsetDiv4]= workingCount;
// dstCmdData[dstCmdOffsetDiv4 + 1]= cmdData[cmdOffsetDiv4 + 1];
// dstCmdData[dstCmdOffsetDiv4 + 2]= 0;
// dstCmdData[dstCmdOffsetDiv4 + 3]= cmdData[cmdOffsetDiv4 + 3];
// dstCmdData[dstCmdOffsetDiv4 + 4]= cmdData[cmdOffsetDiv4 + 4];
// }
......@@ -8,12 +8,29 @@
//
// The following defines tweak the functionality, and a different shader is built based on these.
//
// - Flags:
// * Is32Bit: Process 32-bit indices, otherwise process 16-bit.
// - IndicesBitsWidth:
// * Is8Bits: Process 8-bit indices.
// * Is16Bits: Process 16-bit indices.
// * Is32Bits: Process 32-bit indices.
//
#version 450 core
#if Is32Bits
#define BITSMASK 0xffffffff
#elif Is16Bits
#define BITSMASK 0xffff
#define IDXSHIFT 1 // 16bits index division shift
#define SRCSHIFT(index) ((index & 0x1) << 4) // 16bits data shift value in 32bits index
#elif Is8Bits
#define BITSMASK 0xff
#define IDXSHIFT 2 // 8bits index division shift
#define SRCSHIFT(index) ((index & 0x3) << 3) // 8bits data shift value in 32bits index
#else
// Early error out
#error "Not all bits are accounted for"
#endif
layout (local_size_x = 64, local_size_y = 1, local_size_z = 1) in;
layout (set = 0, binding = 0) buffer dst
......@@ -64,43 +81,42 @@ layout (push_constant) uniform PushConstants
uint GetIndexValue(uint index)
{
#ifdef Is32Bit
#if Is32Bits
return srcData[index];
#else
#elif Is16Bits || Is8Bits
// srcData points to 32bit words, get the word with our index value
uint srcBlock = srcData[index >> 1];
uint srcBlock = srcData[index >> IDXSHIFT];
// Compute the shift necessary to access desired index value
uint srcShift = (index & 0x1) << 4;
// Only want 16bits
uint srcMask = 0xffff;
// unpacking correct 16bit index value from the 32bit word
uint value = (srcBlock >> srcShift) & srcMask;
uint srcShift = SRCSHIFT(index);
// unpacking correct 8/16 bits index value from the 32bit word
uint value = (srcBlock >> srcShift) & BITSMASK;
return value;
#endif
#else
#error "Not all bits are accounted for"
#endif // Is32Bits
}
void PutIndexValue(uint index, uint value)
{
#ifdef Is32Bit
#if Is32Bits
dstData[dstOffsetDiv4 + index] = value;
return;
#else
#elif Is16Bits || Is8Bits
// Compute index into dstData for our index value
uint dstIndex = dstOffsetDiv4 + (index >> 1);
uint dstIndex = dstOffsetDiv4 + (index >> IDXSHIFT);
// Get dest index value
uint srcBlock = dstData[dstIndex];
// Compute the shift for our index value
uint srcShift = (index & 0x1) << 4;
uint srcMask = 0xffff;
uint srcShift = SRCSHIFT(index);
// Clear appropriate 16bits of 32bit word
srcBlock &= ~(srcMask << srcShift);
// Shift value to pack 16bit value into 32bit word
// Clear appropriate bits of 32bit word
srcBlock &= ~(BITSMASK << srcShift);
// Shift value to pack 8/16 bits value into 32bit word
srcBlock |= value << srcShift;
// Store updated value in destination
dstData[dstIndex] = srcBlock;
#endif
#else
#error "Not all bits are accounted for"
#endif // Is32Bits
}
void main()
......@@ -122,12 +138,7 @@ void main()
while (indicesRemaining > 0)
{
uint indexValue;
#ifdef Is32Bit
uint restartValue = 0xffffffff;
#else
uint restartValue = 0xffff;
#endif
uint restartValue = BITSMASK;
indexValue = GetIndexValue(srcIdx++);
if (lineSize == 0)
{
......
{
"Description": [
"Copyright 2019 The ANGLE Project Authors. All rights reserved.",
"Copyright 2020 The ANGLE Project Authors. All rights reserved.",
"Use of this source code is governed by a BSD-style license that can be",
"found in the LICENSE file.",
"",
"ConvertIndexIndirectLineLoop.comp.json: Build parameters for ConvertIndexIndirectLineLoop.comp."
],
"Flags": [
"Is32Bit"
"IndicesBitsWidth": [
"Is8Bits",
"Is16Bits",
"Is32Bits"
]
}
......@@ -264,7 +264,8 @@ VkImageCreateFlags GetImageCreateFlags(gl::TextureType textureType)
}
}
void HandlePrimitiveRestart(gl::DrawElementsType glIndexType,
void HandlePrimitiveRestart(ContextVk *contextVk,
gl::DrawElementsType glIndexType,
GLsizei indexCount,
const uint8_t *srcPtr,
uint8_t *outPtr)
......@@ -272,7 +273,14 @@ void HandlePrimitiveRestart(gl::DrawElementsType glIndexType,
switch (glIndexType)
{
case gl::DrawElementsType::UnsignedByte:
CopyLineLoopIndicesWithRestart<uint8_t, uint16_t>(indexCount, srcPtr, outPtr);
if (contextVk->getFeatures().supportsIndexTypeUint8.enabled)
{
CopyLineLoopIndicesWithRestart<uint8_t, uint8_t>(indexCount, srcPtr, outPtr);
}
else
{
CopyLineLoopIndicesWithRestart<uint8_t, uint16_t>(indexCount, srcPtr, outPtr);
}
break;
case gl::DrawElementsType::UnsignedShort:
CopyLineLoopIndicesWithRestart<uint16_t, uint16_t>(indexCount, srcPtr, outPtr);
......@@ -1254,11 +1262,8 @@ angle::Result LineLoopHelper::getIndexBufferForElementArrayBuffer(ContextVk *con
*indexCountOut = indexCount + 1;
VkIndexType indexType = gl_vk::kIndexTypeMap[glIndexType];
ASSERT(indexType == VK_INDEX_TYPE_UINT16 || indexType == VK_INDEX_TYPE_UINT32);
uint32_t *indices = nullptr;
auto unitSize = (indexType == VK_INDEX_TYPE_UINT16 ? sizeof(uint16_t) : sizeof(uint32_t));
uint32_t *indices = nullptr;
size_t unitSize = contextVk->getVkIndexTypeSize(glIndexType);
size_t allocateBytes = unitSize * (indexCount + 1) + 1;
mDynamicIndexBuffer.releaseInFlightBuffers(contextVk);
......@@ -1290,11 +1295,10 @@ angle::Result LineLoopHelper::streamIndices(ContextVk *contextVk,
VkDeviceSize *bufferOffsetOut,
uint32_t *indexCountOut)
{
VkIndexType indexType = gl_vk::kIndexTypeMap[glIndexType];
size_t unitSize = contextVk->getVkIndexTypeSize(glIndexType);
uint8_t *indices = nullptr;
auto unitSize = (indexType == VK_INDEX_TYPE_UINT16 ? sizeof(uint16_t) : sizeof(uint32_t));
uint32_t numOutIndices = indexCount + 1;
if (contextVk->getState().isPrimitiveRestartEnabled())
{
......@@ -1309,13 +1313,14 @@ angle::Result LineLoopHelper::streamIndices(ContextVk *contextVk,
if (contextVk->getState().isPrimitiveRestartEnabled())
{
HandlePrimitiveRestart(glIndexType, indexCount, srcPtr, indices);
HandlePrimitiveRestart(contextVk, glIndexType, indexCount, srcPtr, indices);
}
else
{
if (glIndexType == gl::DrawElementsType::UnsignedByte)
if (contextVk->shouldConvertUint8VkIndexType(glIndexType))
{
// Vulkan doesn't support uint8 index types, so we need to emulate it.
// If vulkan doesn't support uint8 index types, we need to emulate it.
VkIndexType indexType = contextVk->getVkIndexType(glIndexType);
ASSERT(indexType == VK_INDEX_TYPE_UINT16);
uint16_t *indicesDst = reinterpret_cast<uint16_t *>(indices);
for (int i = 0; i < indexCount; i++)
......@@ -1346,9 +1351,7 @@ angle::Result LineLoopHelper::streamIndicesIndirect(ContextVk *contextVk,
BufferHelper **indirectBufferOut,
VkDeviceSize *indirectBufferOffsetOut)
{
VkIndexType indexType = gl_vk::kIndexTypeMap[glIndexType];
auto unitSize = (indexType == VK_INDEX_TYPE_UINT16 ? sizeof(uint16_t) : sizeof(uint32_t));
size_t unitSize = contextVk->getVkIndexTypeSize(glIndexType);
size_t allocateBytes = static_cast<size_t>(indexBuffer->getSize() + unitSize);
if (contextVk->getState().isPrimitiveRestartEnabled())
......@@ -1385,7 +1388,7 @@ angle::Result LineLoopHelper::streamIndicesIndirect(ContextVk *contextVk,
params.indirectBufferOffset = static_cast<uint32_t>(indirectBufferOffset);
params.dstIndirectBufferOffset = static_cast<uint32_t>(*indirectBufferOffsetOut);
params.dstIndexBufferOffset = static_cast<uint32_t>(*indexBufferOffsetOut);
params.is32Bit = unitSize == 4;
params.indicesBitsWidth = static_cast<uint32_t>(unitSize * 8);
ANGLE_TRY(contextVk->getUtils().convertLineLoopIndexIndirectBuffer(
contextVk, indirectBuffer, destIndirectBuffer, destIndexBuffer, indexBuffer, params));
......
// GENERATED FILE - DO NOT EDIT.
// Generated by gen_vk_internal_shaders.py using data from shaders/src/*
//
// Copyright 2019 The ANGLE Project Authors. All rights reserved.
// Copyright 2020 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
......@@ -62,6 +62,7 @@ namespace
#include "libANGLE/renderer/vulkan/shaders/gen/ConvertIndex.comp.00000003.inc"
#include "libANGLE/renderer/vulkan/shaders/gen/ConvertIndexIndirectLineLoop.comp.00000000.inc"
#include "libANGLE/renderer/vulkan/shaders/gen/ConvertIndexIndirectLineLoop.comp.00000001.inc"
#include "libANGLE/renderer/vulkan/shaders/gen/ConvertIndexIndirectLineLoop.comp.00000002.inc"
#include "libANGLE/renderer/vulkan/shaders/gen/ConvertIndirectLineLoop.comp.00000000.inc"
#include "libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000000.inc"
#include "libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000001.inc"
......@@ -196,6 +197,8 @@ constexpr ShaderBlob kConvertIndexIndirectLineLoop_comp_shaders[] = {
sizeof(kConvertIndexIndirectLineLoop_comp_00000000)},
{kConvertIndexIndirectLineLoop_comp_00000001,
sizeof(kConvertIndexIndirectLineLoop_comp_00000001)},
{kConvertIndexIndirectLineLoop_comp_00000002,
sizeof(kConvertIndexIndirectLineLoop_comp_00000002)},
};
constexpr ShaderBlob kConvertIndirectLineLoop_comp_shaders[] = {
{kConvertIndirectLineLoop_comp_00000000, sizeof(kConvertIndirectLineLoop_comp_00000000)},
......
# GENERATED FILE - DO NOT EDIT.
# Generated by gen_vk_internal_shaders.py using data from shaders/src/*
#
# Copyright 2019 The ANGLE Project Authors. All rights reserved.
# Copyright 2020 The ANGLE Project Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
......@@ -55,6 +55,7 @@ angle_vulkan_internal_shaders = [
"shaders/gen/ConvertIndex.comp.00000003.inc",
"shaders/gen/ConvertIndexIndirectLineLoop.comp.00000000.inc",
"shaders/gen/ConvertIndexIndirectLineLoop.comp.00000001.inc",
"shaders/gen/ConvertIndexIndirectLineLoop.comp.00000002.inc",
"shaders/gen/ConvertIndirectLineLoop.comp.00000000.inc",
"shaders/gen/ConvertVertex.comp.00000000.inc",
"shaders/gen/ConvertVertex.comp.00000001.inc",
......
// GENERATED FILE - DO NOT EDIT.
// Generated by gen_vk_internal_shaders.py using data from shaders/src/*
//
// Copyright 2019 The ANGLE Project Authors. All rights reserved.
// Copyright 2020 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
......@@ -80,11 +80,13 @@ constexpr size_t kArrayLen = 0x00000004;
namespace ConvertIndexIndirectLineLoop_comp
{
enum flags
enum IndicesBitsWidth
{
kIs32Bit = 0x00000001,
kIs8Bits = 0x00000000,
kIs16Bits = 0x00000001,
kIs32Bits = 0x00000002,
};
constexpr size_t kArrayLen = 0x00000002;
constexpr size_t kArrayLen = 0x00000003;
} // namespace ConvertIndexIndirectLineLoop_comp
namespace ConvertIndirectLineLoop_comp
......
......@@ -640,12 +640,6 @@ VkSampleCountFlagBits GetSamples(GLint sampleCount);
VkComponentSwizzle GetSwizzle(const GLenum swizzle);
VkCompareOp GetCompareOp(const GLenum compareFunc);
constexpr angle::PackedEnumMap<gl::DrawElementsType, VkIndexType> kIndexTypeMap = {
{gl::DrawElementsType::UnsignedByte, VK_INDEX_TYPE_UINT16},
{gl::DrawElementsType::UnsignedShort, VK_INDEX_TYPE_UINT16},
{gl::DrawElementsType::UnsignedInt, VK_INDEX_TYPE_UINT32},
};
constexpr gl::ShaderMap<VkShaderStageFlagBits> kShaderStageMap = {
{gl::ShaderType::Vertex, VK_SHADER_STAGE_VERTEX_BIT},
{gl::ShaderType::Fragment, VK_SHADER_STAGE_FRAGMENT_BIT},
......
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