Skip to content

Commit

Permalink
Refactor|libgui|GLInfo: Better name for a method
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Dec 20, 2013
1 parent de90fa3 commit c692f12
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doomsday/libgui/include/de/gui/glinfo.h
Expand Up @@ -66,7 +66,7 @@ class LIBGUI_PUBLIC GLInfo
static Extensions const &extensions();
static Limits const &limits();

static bool supportsFramebufferMultisampling();
static bool isFramebufferMultisamplingSupported();

/**
* Initializes the static instance of GLInfo. Cannot be called before there
Expand Down
2 changes: 1 addition & 1 deletion doomsday/libgui/src/glframebuffer.cpp
Expand Up @@ -287,7 +287,7 @@ void GLFramebuffer::glDeinit()

void GLFramebuffer::setSampleCount(int sampleCount)
{
if(!GLInfo::supportsFramebufferMultisampling())
if(!GLInfo::isFramebufferMultisamplingSupported())
{
sampleCount = 1;
}
Expand Down
2 changes: 1 addition & 1 deletion doomsday/libgui/src/glinfo.cpp
Expand Up @@ -164,7 +164,7 @@ GLInfo::Limits const &GLInfo::limits()
return info.d->lim;
}

bool GLInfo::supportsFramebufferMultisampling()
bool GLInfo::isFramebufferMultisamplingSupported()
{
return extensions().EXT_framebuffer_multisample &&
extensions().EXT_framebuffer_blit;
Expand Down

0 comments on commit c692f12

Please sign in to comment.