ofxMsdfgen/libs/msdf-atlas-gen/include/msdf-atlas-gen/Remap.h

15 lines
213 B
C++

#pragma once
namespace msdf_atlas {
/// Represents the repositioning of a subsection of the atlas
struct Remap {
int index;
struct {
int x, y;
} source, target;
int width, height;
};
}