summaryrefslogtreecommitdiff
path: root/testdata/bug
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-02-22 15:15:23 +0100
committerPéter Diviánszky <divipp@gmail.com>2016-02-22 15:15:44 +0100
commit23b42e612a6a7864428674b3c9d63ed86fc07435 (patch)
tree79bea78eba5d508ef9d4072c9721a4c09f87a000 /testdata/bug
parent94dead004d04bd80db17429859454981513be814 (diff)
rename: fetch_ --> fetch; fetchArrays_ --> fetchArrays
Diffstat (limited to 'testdata/bug')
-rw-r--r--testdata/bug/checksame01.wip.lc2
-rw-r--r--testdata/bug/fragment_tuple5.wip.lc2
-rw-r--r--testdata/bug/infer01.wip.lc2
-rw-r--r--testdata/bug/parser01.wip.lc2
-rw-r--r--testdata/bug/parser02.wip.lc2
5 files changed, 5 insertions, 5 deletions
diff --git a/testdata/bug/checksame01.wip.lc b/testdata/bug/checksame01.wip.lc
index b88b8256..d1ab0bcf 100644
--- a/testdata/bug/checksame01.wip.lc
+++ b/testdata/bug/checksame01.wip.lc
@@ -13,5 +13,5 @@ makeFrame (projmat :: Mat 4 4 Float)
13 13
14main = renderFrame $ 14main = renderFrame $
15 makeFrame (Uniform "MVP") 15 makeFrame (Uniform "MVP")
16 (fetch_ "stream4" (Attribute "position4", Attribute "vertexUV")) 16 (fetch "stream4" (Attribute "position4", Attribute "vertexUV"))
17 17
diff --git a/testdata/bug/fragment_tuple5.wip.lc b/testdata/bug/fragment_tuple5.wip.lc
index 311483c6..87499910 100644
--- a/testdata/bug/fragment_tuple5.wip.lc
+++ b/testdata/bug/fragment_tuple5.wip.lc
@@ -13,5 +13,5 @@ makeFrame (projmat :: Mat 4 4 Float)
13 13
14main = renderFrame $ 14main = renderFrame $
15 makeFrame (Uniform "MVP") 15 makeFrame (Uniform "MVP")
16 (fetch_ "stream4" (Attribute "position4")) 16 (fetch "stream4" (Attribute "position4"))
17 17
diff --git a/testdata/bug/infer01.wip.lc b/testdata/bug/infer01.wip.lc
index 07c84705..ec1b53fd 100644
--- a/testdata/bug/infer01.wip.lc
+++ b/testdata/bug/infer01.wip.lc
@@ -15,5 +15,5 @@ makeFrame (vertexstream :: PrimitiveStream Triangle (Vec 4 Float,Vec 2 Float))
15 & accumulateWith (DepthOp Less True, ColorOp NoBlending (V4 True True True True)) 15 & accumulateWith (DepthOp Less True, ColorOp NoBlending (V4 True True True True))
16 16
17main = renderFrame $ 17main = renderFrame $
18 makeFrame (fetch_ "stream4" (Attribute "position4",Attribute "vertexUV")) 18 makeFrame (fetch "stream4" (Attribute "position4",Attribute "vertexUV"))
19 19
diff --git a/testdata/bug/parser01.wip.lc b/testdata/bug/parser01.wip.lc
index 53385fba..bca5d9d2 100644
--- a/testdata/bug/parser01.wip.lc
+++ b/testdata/bug/parser01.wip.lc
@@ -13,5 +13,5 @@ makeFrame (projmat :: Mat 4 4 Float)
13 13
14main = renderFrame $ 14main = renderFrame $
15 makeFrame (Uniform "MVP") 15 makeFrame (Uniform "MVP")
16 (fetch_ "stream4" (Attribute "position4", Attribute "vertexUV")) 16 (fetch "stream4" (Attribute "position4", Attribute "vertexUV"))
17 17
diff --git a/testdata/bug/parser02.wip.lc b/testdata/bug/parser02.wip.lc
index 5e52b30d..eb6c493e 100644
--- a/testdata/bug/parser02.wip.lc
+++ b/testdata/bug/parser02.wip.lc
@@ -13,5 +13,5 @@ makeFrame (projmat :: Mat 4 4 Float)
13 13
14main = renderFrame $ 14main = renderFrame $
15 makeFrame (Uniform "MVP") 15 makeFrame (Uniform "MVP")
16 (fetch_ "stream4" (Attribute "position4", Attribute "vertexUV")) 16 (fetch "stream4" (Attribute "position4", Attribute "vertexUV"))
17 17