| 360 | } |
| 361 | |
| 362 | std::string TensorCodeGenerator::ReadAsFloat3D( |
| 363 | const std::string& x, const std::string& y, const std::string& z, |
| 364 | TextureAddressMode address_mode) const { |
| 365 | return ReadGlobalFloat4(storage_type_, name_, uniform_size_name_, x, y, z, |
| 366 | address_mode); |
| 367 | } |
| 368 | |
| 369 | std::string TensorCodeGenerator::Read3D(const std::string& global_address, |
| 370 | TextureAddressMode address_mode) const { |
no test coverage detected