mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-03-06 14:27:43 +00:00
Changed a function name in FlexboxComponent.
This commit is contained in:
parent
319992a0f7
commit
3fd18ec2ee
es-core/src/components
|
@ -38,7 +38,7 @@ void FlexboxComponent::render(const glm::mat4& parentTrans)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!mLayoutValid)
|
if (!mLayoutValid)
|
||||||
computeLayout();
|
calculateLayout();
|
||||||
|
|
||||||
glm::mat4 trans {parentTrans * getTransform()};
|
glm::mat4 trans {parentTrans * getTransform()};
|
||||||
mRenderer->setMatrix(trans);
|
mRenderer->setMatrix(trans);
|
||||||
|
@ -82,7 +82,7 @@ void FlexboxComponent::setItemMargin(glm::vec2 value)
|
||||||
mLayoutValid = false;
|
mLayoutValid = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FlexboxComponent::computeLayout()
|
void FlexboxComponent::calculateLayout()
|
||||||
{
|
{
|
||||||
// If we're not clamping itemMargin to a reasonable value, all kinds of weird rendering
|
// If we're not clamping itemMargin to a reasonable value, all kinds of weird rendering
|
||||||
// issues could occur.
|
// issues could occur.
|
||||||
|
|
|
@ -78,7 +78,7 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Calculate flexbox layout.
|
// Calculate flexbox layout.
|
||||||
void computeLayout();
|
void calculateLayout();
|
||||||
|
|
||||||
Renderer* mRenderer;
|
Renderer* mRenderer;
|
||||||
std::vector<FlexboxItem>& mItems;
|
std::vector<FlexboxItem>& mItems;
|
||||||
|
|
Loading…
Reference in a new issue