I want enable Spherical Video on my board. Now I need some test cases to test if my design is right. The filter will have the following CSS syntax:
map-to-mesh() = map-to-mesh(<mesh-spec>, <angle>{2}, <transform-function>[ ,
<stereo-mode>])
<mesh-spec> = equirectangular | <uri> [<number> <number> <uri>]*
For example:
.mesh-projection {
filter: map-to-mesh(url(projection.msh), 100deg 60deg,
matrix3d(1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1),
monoscopic);
}