mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 01:06:00 +08:00
[ue] Fix shadowed variables on Clang/GCC.
This commit is contained in:
parent
b47c739516
commit
eb2802e366
@ -462,10 +462,9 @@ void Skeleton::getBounds(float &outX, float &outY, float &outWidth,
|
|||||||
getBounds(outX, outY, outWidth, outHeight, outVertexBuffer, NULL);
|
getBounds(outX, outY, outWidth, outHeight, outVertexBuffer, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned short quadIndices[] = {0, 1, 2, 2, 3, 0};
|
|
||||||
|
|
||||||
void Skeleton::getBounds(float &outX, float &outY, float &outWidth,
|
void Skeleton::getBounds(float &outX, float &outY, float &outWidth,
|
||||||
float &outHeight, Vector<float> &outVertexBuffer, SkeletonClipping *clipper) {
|
float &outHeight, Vector<float> &outVertexBuffer, SkeletonClipping *clipper) {
|
||||||
|
static unsigned short quadIndices[] = {0, 1, 2, 2, 3, 0};
|
||||||
float minX = FLT_MAX;
|
float minX = FLT_MAX;
|
||||||
float minY = FLT_MAX;
|
float minY = FLT_MAX;
|
||||||
float maxX = -FLT_MAX;
|
float maxX = -FLT_MAX;
|
||||||
|
|||||||
Binary file not shown.
@ -102,7 +102,7 @@ class UETextureLoader : public TextureLoader {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
UETextureLoader textureLoader;
|
UETextureLoader _spineUETextureLoader;
|
||||||
|
|
||||||
Atlas *USpineAtlasAsset::GetAtlas() {
|
Atlas *USpineAtlasAsset::GetAtlas() {
|
||||||
if (!atlas) {
|
if (!atlas) {
|
||||||
@ -113,7 +113,7 @@ Atlas *USpineAtlasAsset::GetAtlas() {
|
|||||||
std::string t = TCHAR_TO_UTF8(*rawData);
|
std::string t = TCHAR_TO_UTF8(*rawData);
|
||||||
|
|
||||||
atlas = new (__FILE__, __LINE__)
|
atlas = new (__FILE__, __LINE__)
|
||||||
Atlas(t.c_str(), strlen(t.c_str()), "", &textureLoader);
|
Atlas(t.c_str(), strlen(t.c_str()), "", &_spineUETextureLoader);
|
||||||
}
|
}
|
||||||
return this->atlas;
|
return this->atlas;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user