aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorReinUsesLisp <[email protected]>2019-10-24 03:25:42 -0300
committerReinUsesLisp <[email protected]>2019-10-24 03:25:42 -0300
commit6967a2c12402dbae1e7c80c3ef27581b15cf799e (patch)
tree25a2e4c507115d015020dca4fb558cb0565deddf /README.md
parentf254b6a394970bf656c20927d051b5d2fe8893cf (diff)
downloadsirit-6967a2c12402dbae1e7c80c3ef27581b15cf799e.tar.gz
sirit-6967a2c12402dbae1e7c80c3ef27581b15cf799e.zip
Fix typos in README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 8079015..72109bb 100644
--- a/README.md
+++ b/README.md
@@ -3,18 +3,18 @@ Sirit
A runtime SPIR-V assembler. It aims to ease dynamic SPIR-V code generation
without calling external applications (like Khronos' `spirv-as`)
-Its design aims to move code that does not belong to the application in the
-library without, limitting its functionality.
+Its design aims to move code that does not belong in the application to the
+library, without limiting its functionality.
-What it does for you:
+What Sirit does for you:
* Sort declaration opcodes
* Handle types and constant duplicates
* Emit SPIR-V opcodes
-What does not do for you:
-* Avoid ID duplicates (emitting the same instruction twice)
+What Sirit won't do for you:
+* Avoid ID duplicates (e.g. emitting the same label twice)
* Dump code to disk
-* Handle code blocks/branches
+* Handle control flow
* Compile from a higher level language