UTILITY.H
Upload User: nthssl
Upload Date: 2022-04-05
Package Size: 25357k
Code Size: 1k
Category:

OpenCV

Development Platform:

Visual C++

  1. // Utility.h: interface for the CUtility class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_UTILITY_H__C8E6586D_A747_4EEF_98D1_81A90252C9F3__INCLUDED_)
  5. #define AFX_UTILITY_H__C8E6586D_A747_4EEF_98D1_81A90252C9F3__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CUtility  
  10. {
  11. public:
  12. CUtility();
  13. virtual ~CUtility();
  14. void glPrintf(int ScrrenW,int ScreenH,GLuint x, GLuint y, int align, GLfloat scale, char* format, ...);
  15. void PrintString(void *font, char *string);
  16. float FPS(int LastFrameTime);
  17. };
  18. #endif // !defined(AFX_UTILITY_H__C8E6586D_A747_4EEF_98D1_81A90252C9F3__INCLUDED_)