瀏覽代碼

[c] Closes #2264, initialize atlas page defaults properly.

Mario Zechner 2 年之前
父節點
當前提交
7a5c6995ef
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      spine-c/spine-c/src/spine/Atlas.c

+ 5 - 0
spine-c/spine-c/src/spine/Atlas.c

@@ -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;
 }