| 168 | } |
| 169 | |
| 170 | static Result NRI_CALL CreateTexture2DView(const Texture2DViewDesc& textureViewDesc, Descriptor*& textureView) { |
| 171 | DeviceVal& device = GetDeviceVal(*textureViewDesc.texture); |
| 172 | |
| 173 | return device.CreateDescriptor(textureViewDesc, textureView); |
| 174 | } |
| 175 | |
| 176 | static Result NRI_CALL CreateTexture3DView(const Texture3DViewDesc& textureViewDesc, Descriptor*& textureView) { |
| 177 | DeviceVal& device = GetDeviceVal(*textureViewDesc.texture); |
nothing calls this directly
no test coverage detected