2009-02-12 04:58:05 -05:00
|
|
|
! Copyright (C) 2009 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-02-19 05:06:57 -05:00
|
|
|
USING: tools.test opengl.textures opengl.textures.private
|
2009-03-27 19:31:25 -04:00
|
|
|
opengl.textures.private images kernel namespaces accessors
|
|
|
|
sequences ;
|
2009-02-12 04:58:05 -05:00
|
|
|
IN: opengl.textures.tests
|
2009-02-19 05:06:57 -05:00
|
|
|
|
2009-03-27 19:31:25 -04:00
|
|
|
[
|
|
|
|
{
|
|
|
|
{ { 0 0 } { 10 0 } }
|
|
|
|
{ { 0 20 } { 10 20 } }
|
|
|
|
}
|
|
|
|
] [
|
|
|
|
{
|
|
|
|
{ { 10 20 } { 30 20 } }
|
|
|
|
{ { 10 30 } { 30 300 } }
|
|
|
|
}
|
|
|
|
[ [ image new swap >>dim ] map ] map image-locs
|
2009-02-19 05:06:57 -05:00
|
|
|
] unit-test
|