mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-15 08:15:38 +07:00
rename spine_model to spine
This commit is contained in:
@@ -35,10 +35,10 @@ TEST_CASE("render"){
|
||||
}
|
||||
{
|
||||
const auto ss = render::sampler_state()
|
||||
.wrap(render::sampler_wrap::clamp)
|
||||
.wrap(render::sampler_wrap::clamp, render::sampler_wrap::mirror)
|
||||
.filter(render::sampler_min_filter::linear, render::sampler_mag_filter::nearest);
|
||||
REQUIRE(ss.s_wrap() == render::sampler_wrap::clamp);
|
||||
REQUIRE(ss.t_wrap() == render::sampler_wrap::clamp);
|
||||
REQUIRE(ss.t_wrap() == render::sampler_wrap::mirror);
|
||||
REQUIRE(ss.min_filter() == render::sampler_min_filter::linear);
|
||||
REQUIRE(ss.mag_filter() == render::sampler_mag_filter::nearest);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user