Skip to content

Commit 15386ba

Browse files
authored
remove warning about corruption in SSBOs (it isn't true)
1 parent fc80c2c commit 15386ba

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

  • src/content/docs/current/Reference/Buffers

src/content/docs/current/Reference/Buffers/ssbo.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ Like with fixed sized SSBOs, replace `<index>` with a unique value from 0 to 8.
4444
## Using SSBOs in your shader
4545
To use an SSBO in a shader, you must define it's layout. Here is an example definition of a SSBO, where bufferName can be any name:
4646

47-
**This layout must be the same across all shaders, otherwise the data will get corrupted.**
48-
4947
```glsl
5048
layout(std430, binding = index) buffer bufferName {
5149
vec4 someData; // 16 bytes

0 commit comments

Comments
 (0)