Program Listing for File resolution.cpp

Return to documentation for file (blam\components\rendering\directx11\resolution.cpp)

// Blamite Game Engine - Screen Resolution Updating   //
//   (c) Elaztek Studios 2013-2018                   //


#include "components\rendering\rendering.h"

HRESULT BlamRendering::DirectX::UpdateResolution(int x, int y)
{
    LPARAM lParam = MAKELPARAM(x, y);

    return BlamRendering::DirectX::HandleWindowResize(lParam);
}