Closed juakob closed 8 years ago
the shader thats throwing the error is this
` attribute vec2 vertexPosition; attribute vec2 texPosition; uniform mat4 projectionMatrix; varying vec2 texCoord; varying vec2 texCoordMask; void kore() { vec4 pos = projectionMatrix*vec4(vertexPosition.xy,0.0, 1.0) ; texCoord = texPosition; vec2 v_texCoordMask= vec2((1.0 + pos.x)*0.5,(1.0 + pos.y)*0.5); texCoordMask=v_texCoordMask; gl_Position=pos; }`
simpleMask.vert.hlsl(62,34): error X3004: undeclared identifier 'posv' simpleMask.vert.hlsl(62,34): error X3004: undeclared identifier 'posv'
Fixed, but please check if the shader now works as expected.
thank you Robert! its working now
the shader thats throwing the error is this
simpleMask.vert.hlsl(62,34): error X3004: undeclared identifier 'posv' simpleMask.vert.hlsl(62,34): error X3004: undeclared identifier 'posv'