| 352 | } |
| 353 | |
| 354 | std::string TensorCodeGenerator::Read3D(const std::string& x, |
| 355 | const std::string& y, |
| 356 | const std::string& z, |
| 357 | TextureAddressMode address_mode) const { |
| 358 | return ReadGlobalFLT4(storage_type_, data_type_, name_, uniform_size_name_, x, |
| 359 | y, z, address_mode); |
| 360 | } |
| 361 | |
| 362 | std::string TensorCodeGenerator::ReadAsFloat3D( |
| 363 | const std::string& x, const std::string& y, const std::string& z, |
no test coverage detected