Lines Matching refs:vec2
559 Mesh::VertexArray<vec2> position(mesh.getPositionArray<vec2>()); in fillRegionWithColor()
763 Mesh::VertexArray<vec2> cropCoords(mesh.getCropCoordArray<vec2>()); in setupLayerCropping()
764 cropCoords[0] = vec2(cropWin.left, cropWin.top); in setupLayerCropping()
765 cropCoords[1] = vec2(cropWin.left, cropWin.top + cropWin.getHeight()); in setupLayerCropping()
766 cropCoords[2] = vec2(cropWin.right, cropWin.top + cropWin.getHeight()); in setupLayerCropping()
767 cropCoords[3] = vec2(cropWin.right, cropWin.top); in setupLayerCropping()
1110 Mesh::VertexArray<vec2> position(mesh.getPositionArray<vec2>()); in drawLayers()
1111 position[0] = vec2(bounds.left, bounds.top); in drawLayers()
1112 position[1] = vec2(bounds.left, bounds.bottom); in drawLayers()
1113 position[2] = vec2(bounds.right, bounds.bottom); in drawLayers()
1114 position[3] = vec2(bounds.right, bounds.top); in drawLayers()
1140 renderengine::Mesh::VertexArray<vec2> texCoords(mesh.getTexCoordArray<vec2>()); in drawLayers()
1141 texCoords[0] = vec2(0.0, 0.0); in drawLayers()
1142 texCoords[1] = vec2(0.0, 1.0); in drawLayers()
1143 texCoords[2] = vec2(1.0, 1.0); in drawLayers()
1144 texCoords[3] = vec2(1.0, 0.0); in drawLayers()
1699 Mesh::VertexArray<vec2> position = mesh.getPositionArray<vec2>(); in handleShadow()