mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-04 20:46:29 +03:00
Fix typo.
This commit is contained in:
@@ -286,7 +286,7 @@ class EE_API Renderer {
|
||||
RSF_LINE_SMOOTH = 0,
|
||||
RSF_POLYGON_MODE,
|
||||
RSF_POLYGON_SMOOTH,
|
||||
RFS_MULTISAMPLE
|
||||
RSF_MULTISAMPLE
|
||||
};
|
||||
|
||||
Uint32 mExtensions;
|
||||
|
||||
@@ -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 ) {
|
||||
|
||||
Reference in New Issue
Block a user