Post

Replies

Boosts

Views

Created

Error when trying to create texture on CPU, "Not Supported on this Device"
I am working on creating a "Volume" application in RealityKit for visionOS. I want to create a texture on the CPU that I can hook into a Material and modify. When I go to create the texture I get this error: Linear textures from shared buffers is not supported on this device Here is the code: guard let device = MTLCreateSystemDefaultDevice() else { fatalError("unable to get metal device") } let textureDescriptor = MTLTextureDescriptor.textureBufferDescriptor(with: .r32Float, width: 64, resourceOptions: .storageModeShared, usage: .shaderRead) let buffer = device.makeBuffer(length: 64 * 4) return buffer?.makeTexture(descriptor: textureDescriptor, offset: 0, bytesPerRow: 64 * 4)
1
0
874
Jul ’23
How to sample textures from custom or non-uv0 index?
In Reality Composer Pro shader graph I don't see a way to select which uv or specify custom uvs to use to sample textures. Is there a method to do this?
Replies
0
Boosts
1
Views
460
Activity
Aug ’23
Error when trying to create texture on CPU, "Not Supported on this Device"
I am working on creating a "Volume" application in RealityKit for visionOS. I want to create a texture on the CPU that I can hook into a Material and modify. When I go to create the texture I get this error: Linear textures from shared buffers is not supported on this device Here is the code: guard let device = MTLCreateSystemDefaultDevice() else { fatalError("unable to get metal device") } let textureDescriptor = MTLTextureDescriptor.textureBufferDescriptor(with: .r32Float, width: 64, resourceOptions: .storageModeShared, usage: .shaderRead) let buffer = device.makeBuffer(length: 64 * 4) return buffer?.makeTexture(descriptor: textureDescriptor, offset: 0, bytesPerRow: 64 * 4)
Replies
1
Boosts
0
Views
874
Activity
Jul ’23
Does RealityKit support Blend Shapes
Is there support for Blend Shapes in RealityKit? I don't see controls for it in the API and the Blend Shapes that should be on my model aren't appearing in Reality Composer Pro
Replies
3
Boosts
3
Views
1.5k
Activity
Jul ’23