Files
2026-06-01 12:46:52 +02:00

29 lines
585 B
C++

#ifdef _KUI_INVALIDATION
/**==========================================================*\
@file : SUIViewport.h
@brief : KUIGenWnd 단위로 렌더타겟 텍스쳐를 그리기 위한 뷰포트.
@date : 2007.06.13
@author : sonador
\*===========================================================*/
#pragma once
// { [sonador]
#include "SViewport.h"
#include <dump/XException.h>
// }
class SUIViewPort : public SViewPort
{
public:
SUIViewPort( bool bClearColorBuffer = true, bool bClearDepthBuffer = true );
virtual ~SUIViewPort();
protected:
void RenderSprite();
};
#endif