mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-03 19:54:24 +08:00
12 lines
183 B
C++
12 lines
183 B
C++
#include "GFXManager.h"
|
|
|
|
GFXManager::GFXManager(CShaderMgr* shaderMgr)
|
|
: m_shaderMgr(shaderMgr)
|
|
{
|
|
}
|
|
|
|
GFXAPIBackend GFXManager::backend() const noexcept
|
|
{
|
|
return m_apiBackend;
|
|
}
|