Fix typo.

This commit is contained in:
Martín Lucas Golini
2024-04-12 20:17:42 -03:00
parent c52db34ec2
commit d70f00265b
2 changed files with 3 additions and 3 deletions

View File

@@ -286,7 +286,7 @@ class EE_API Renderer {
RSF_LINE_SMOOTH = 0,
RSF_POLYGON_MODE,
RSF_POLYGON_SMOOTH,
RFS_MULTISAMPLE
RSF_MULTISAMPLE
};
Uint32 mExtensions;

View File

@@ -587,11 +587,11 @@ void Renderer::multisample( bool enabled ) {
else
disable( GL_MULTISAMPLE );
BitOp::writeBitKey( &mStateFlags, RFS_MULTISAMPLE, enabled ? 1 : 0 );
BitOp::writeBitKey( &mStateFlags, RSF_MULTISAMPLE, enabled ? 1 : 0 );
}
bool Renderer::isMultisample() {
return BitOp::readBitKey( &mStateFlags, RFS_MULTISAMPLE );
return BitOp::readBitKey( &mStateFlags, RSF_MULTISAMPLE );
}
void Renderer::polygonMode( const PrimitiveFillMode& Mode ) {