summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorJosé Fonseca <jose.r.fonseca@gmail.com>2012-11-16 21:29:40 +0000
committerJosé Fonseca <jose.r.fonseca@gmail.com>2012-11-16 21:29:40 +0000
commit262e041bdbbdb9304936893bf4373800827fbbd8 (patch)
tree3a6e9c1e1c3407a675c52680533e099968454bc8 /README.markdown
parentcdefc48190b163312dc42ddae99025cdeae845d9 (diff)
doc: Update examples to use call 0.
Call numbers start from 0, but examples gave the impression it started from call 1.
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.markdown b/README.markdown
index af54b7f9..eb0945b5 100644
--- a/README.markdown
+++ b/README.markdown
@@ -85,15 +85,15 @@ The call syntax is very flexible. Here are a few examples:
* `4` one call
- * `1,2,4,5` set of calls
+ * `0,2,4,5` set of calls
- * `"1 2 4 5"` set of calls (commas are optional and can be replaced with whitespace)
+ * `"0 2 4 5"` set of calls (commas are optional and can be replaced with whitespace)
- * `1-100/2` calls 1, 3, 5, ..., 99
+ * `0-100/2` calls 1, 3, 5, ..., 99
- * `1-1000/draw` all draw calls between 1 and 1000
+ * `0-1000/draw` all draw calls between 0 and 1000
- * `1-1000/fbo` all fbo changes between calls 1 and 1000
+ * `0-1000/fbo` all fbo changes between calls 0 and 1000
* `frame` all calls at end of frames