use of com.b3dgs.lionengine.graphic.filter.FilterHq2x in project lionengine by b3dgs.
the class LoaderTest method testFilterHq2x.
/**
* Test with a hq2x filter.
*/
@Test
void testFilterHq2x() {
final Resolution output = new Resolution(640, 480, 0);
final Config config = new Config(output, 16, false);
Loader.start(config, SequenceFilterMock.class, new FilterHq2x()).await();
}
Aggregations