summaryrefslogtreecommitdiff
path: root/API.md
diff options
context:
space:
mode:
Diffstat (limited to 'API.md')
-rw-r--r--API.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/API.md b/API.md
index 43b20fc..b23c9eb 100644
--- a/API.md
+++ b/API.md
@@ -6924,6 +6924,34 @@ Set shader currently active (id and locations)
---
+## RLGL - Compute shader management
+
+---
+
+> programId = RL.rlLoadComputeShaderProgram( int shaderId )
+
+Load compute shader program
+
+- Success return int
+
+---
+
+> RL.rlComputeShaderDispatch( int groupX, int groupY, int groupZ )
+
+Dispatch compute shader (equivalent to *draw* for graphics pipeline)
+
+---
+
+## RLGL - Buffer management
+
+---
+
+> RL.rlBindImageTexture( int id, int index, int format, bool readonly )
+
+Bind image texture
+
+---
+
## RLGL - Matrix state management
---