fixed uv missing in vertex shader of canvas.
This commit is contained in:
parent
c7cef29b00
commit
7c55228f5c
1 changed files with 4 additions and 0 deletions
|
@ -145,6 +145,8 @@ void main() {
|
||||||
|
|
||||||
#define extra_matrix extra_matrix_instance
|
#define extra_matrix extra_matrix_instance
|
||||||
|
|
||||||
|
//for compatibility with the fragment shader we need to use uv here
|
||||||
|
vec2 uv = uv_interp;
|
||||||
{
|
{
|
||||||
/* clang-format off */
|
/* clang-format off */
|
||||||
|
|
||||||
|
@ -153,6 +155,8 @@ VERTEX_SHADER_CODE
|
||||||
/* clang-format on */
|
/* clang-format on */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uv_interp = uv;
|
||||||
|
|
||||||
#ifdef USE_NINEPATCH
|
#ifdef USE_NINEPATCH
|
||||||
|
|
||||||
pixel_size_interp = abs(dst_rect.zw) * vertex;
|
pixel_size_interp = abs(dst_rect.zw) * vertex;
|
||||||
|
|
Loading…
Reference in a new issue