Avatar texture resolution limiter
Griff0n
I was thinking, is it possible to implement within the game an option within the advanced settings menu to limit the size of all avatar textures that are displayed on avatars?
If the texture max setting is set to 2048 for example:
If any avatar texture that is downloading is greater than 2048x2048 pixels, then the game would make a 2048x2048 version of each oversized texture and then overwrite the original in the cache on the player's computer or Quest 2. The max avatar material texture resolution could be set by the player (1K, 2K and 4K respectively). It would increase the time it would take to see avatars by a little bit but once an avatar is in the cache, it would increase overall performance right?
(NanoAi helped with this idea)
Log In
frou01
I think "streaming mipmaps" is silver bullet to implement limitation of texture resolution. The memory budget is a helpfull, isn't it?
frou01
This is better idea than hiding a high resolution avatar. I'm using RX 5700(VRAM: 8GB), this is not enough for 16~ instance. If there are 10 very poor avatar, VRAM will be used up.
Let's do the math.
A high quality material uses...
color : 4K RGBA texture = 64MB
normal : 4K RGB texture = 48MB
smoothness : 4K glay scale texture = 16MB
And there is 4-5 meshes. -> 128MB * 4=512MB.
1GB is normally used by system and other application, 2GB will be used by world and VRChat, so avatar data is pushed into 5GB. 5GB ram can store... 5/0.5 = 10 avatars.
Texture compression can reduce VRAM usage, but most people who is using very poor avatar not pay attention to VRAM usage. You don't expect change, you can't force change.
But texture resolution limitation can go far away this problem. Downsizing a 4K texture to 1K reduces VRAM usage by 1/4, I can store 40 verypoor avatars into my VRAM!
The bottleneck will be resolved and will no longer be noticeable due to other issues for the time being.
(If I want to show 40 verypoor avatars, I have to buy new GPU and CPU.)
Griff0n
frou01: I agree. I'm thinking if the original texture is set to be overwritten in the cache with the selected resolution it would improve things. It would take a little longer to show the avatar but it would probably reduce the VRAM being used once it's rendered.
Griff0n
This could potentially reduce avatar file size in stored in the cache on each player's computer or headset. When changing the setting, the avatar portion of the cache would be reset/deleted.