Switch default renderer to webrender, and update webrender.

This commit is contained in:
Glenn Watson 2016-09-28 17:18:50 +10:00
parent c7e1a575a5
commit f562c426e3
8 changed files with 14 additions and 15 deletions

View file

@ -4,10 +4,10 @@
void main(void) {
#ifdef WR_FEATURE_TRANSFORM
float alpha = 1;
float alpha = 1.f;
vec2 local_pos = init_transform_fs(vPos, vLocalRect, alpha);
#else
float alpha = 1;
float alpha = 1.f;
vec2 local_pos = vPos;
#endif