shader-storage-buffer Questions
1
I've been having some issues with transfering a GPU buffer into CPU for performing sorting operations. The buffer is a GL_SHADER_STORAGE_BUFFER composed of 300.000 float values. The transfer operat...
Linnette asked 30/5, 2020 at 23:27
0
I'm trying my hand at shader storage buffer objects (aka Buffer Blocks) and there are a couple of things I don't fully grasp. What I'm trying to do is to store the (simplified) data of an indetermi...
Chloe asked 26/7, 2017 at 4:56
0
I am interested in passing a variable length array (attached SSBO) to a function, i.e.:
layout(std430) buffer ssbo {
type buffer[];
};
void func(buffer) {
buffer[...]
}
func(buffer);
EDIT: T...
Unbelt asked 27/4, 2016 at 5:53
1
© 2022 - 2024 — McMap. All rights reserved.