GrpcPrint/PrintC/utils/ImageHelper.h

20 lines
360 B
C
Raw Normal View History

2024-04-01 18:26:14 +08:00
#pragma once
#include <string>
#if defined(_WIN32) && !defined(APIENTRY)
#define APIENTRY __stdcall
#endif
#if defined(_WIN32) && !defined(WINGDIAPI)
#define WINGDIAPI __declspec(dllimport)
#endif
#include <gl/GL.h>
//#include <GL/khronos_glext.h>
class ImageHelper
{
public:
ImageHelper();
~ImageHelper();
static GLuint GetQr(std::string strcode);
};