| 113 | } |
| 114 | |
| 115 | Array<byte> WebPlatformTools::SaveCache(CookingData& data, IBuildCache* cache) |
| 116 | { |
| 117 | const auto platformSettings = WebPlatformSettings::Get(); |
| 118 | WebPlatformCache platformCache; |
| 119 | platformCache.TexturesCompression = platformSettings->TexturesCompression; |
| 120 | Array<byte> result; |
| 121 | result.Add((const byte*)&platformCache, sizeof(platformCache)); |
| 122 | return result; |
| 123 | } |
| 124 | |
| 125 | bool WebPlatformTools::IsNativeCodeFile(CookingData& data, const String& file) |
| 126 | { |