Olivier Guyot
40d44db85e
Shader Builder / use vertex context to parse the symbol rotation expression
...
Previously the expression was parsed in the fragment shader context, which
meant in case the expression used an attributes the resulting GLSL code
would be wrong.
Fragment shader context:
`float angle = v_heading; // we're using the varying: not OK`
Vertex shader context:
`float angle = a_heading; // we're using the attribute: OK`
2020-03-03 10:09:39 +01:00
..
2020-01-29 20:21:08 +01:00
2018-06-19 14:02:15 +02:00
2018-11-12 14:54:12 +01:00
2019-09-26 19:59:27 +02:00
2020-02-05 23:51:48 +00:00
2019-09-30 08:28:50 -06:00
2020-02-17 18:27:03 +01:00
2020-01-24 17:52:13 +01:00
2018-12-13 19:07:12 +01:00
2020-02-17 21:58:45 +01:00
2020-01-13 22:12:53 +01:00
2018-11-21 11:14:17 -07:00
2020-01-05 00:05:24 +01:00
2019-01-21 23:04:31 +01:00
2020-01-15 11:13:45 +01:00
2020-02-17 18:20:50 +00:00
2018-01-12 00:50:30 -07:00
2020-03-03 10:09:39 +01:00
2019-09-25 17:22:36 +02:00
2018-01-12 00:50:30 -07:00
2018-07-19 10:26:17 -06:00
2017-12-18 10:33:41 +01:00
2019-09-28 18:55:38 +02:00
2019-10-22 23:17:30 +02:00
2018-12-13 19:07:12 +01:00
2019-07-04 16:12:35 +02:00
2018-11-29 22:35:46 +01:00
2019-09-04 16:48:43 +02:00
2019-09-28 19:02:02 -05:00
2019-04-08 13:46:54 +02:00
2019-09-27 23:23:24 +02:00
2018-01-12 00:50:30 -07:00
2019-09-24 17:45:04 +02:00
2018-01-12 00:50:30 -07:00
2019-10-21 16:00:54 +01:00
2020-02-17 13:27:23 +01:00
2020-01-05 00:05:24 +01:00
2018-07-19 10:26:17 -06:00
2019-11-25 01:09:05 +01:00
2019-09-26 17:23:39 +02:00
2019-11-25 01:09:05 +01:00
2019-05-16 12:11:58 +02:00
2019-09-27 23:23:24 +02:00
2019-09-28 18:55:38 +02:00
2019-09-27 23:49:57 +02:00
2018-07-26 10:14:58 -06:00
2018-01-12 00:50:30 -07:00
2019-09-21 11:21:05 -06:00
2018-02-15 17:55:54 +01:00
2019-05-29 08:51:10 -06:00
2019-02-22 15:01:30 +01:00
2018-02-07 11:47:51 -07:00
2018-01-12 00:50:30 -07:00
2018-01-19 15:38:21 +01:00
2018-07-19 10:26:17 -06:00
2020-01-05 00:05:24 +01:00
2018-11-21 11:14:17 -07:00
2020-01-05 00:05:24 +01:00
2018-01-12 00:50:30 -07:00
2018-11-21 11:14:17 -07:00
2018-11-17 16:28:29 +01:00
2018-01-16 13:35:27 +01:00
2020-01-05 00:05:24 +01:00
2019-03-10 09:37:58 +01:00
2020-02-05 16:46:45 +10:00