mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-06 07:14:55 +08:00
[c] Closes #2264, initialize atlas page defaults properly.
This commit is contained in:
parent
f85928c03a
commit
7a5c6995ef
@ -99,6 +99,11 @@ spAtlasPage *spAtlasPage_create(spAtlas *atlas, const char *name) {
|
||||
spAtlasPage *self = NEW(spAtlasPage);
|
||||
CONST_CAST(spAtlas *, self->atlas) = atlas;
|
||||
MALLOC_STR(self->name, name);
|
||||
self->minFilter = SP_ATLAS_NEAREST;
|
||||
self->magFilter = SP_ATLAS_NEAREST;
|
||||
self->format = SP_ATLAS_RGBA8888;
|
||||
self->uWrap = SP_ATLAS_CLAMPTOEDGE;
|
||||
self->vWrap = SP_ATLAS_CLAMPTOEDGE;
|
||||
return self;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user