Update imgui to latest.

This commit is contained in:
Mr_Goldberg 2022-08-05 01:34:29 -04:00
parent ba877b6e78
commit df94c38b0f
No known key found for this signature in database
GPG key ID: 8597D87419DEF278
58 changed files with 17087 additions and 5583 deletions

View file

@ -0,0 +1,26 @@
#ifndef __IMGUI_SHADER_BLOBS_INCLUDED__
#define __IMGUI_SHADER_BLOBS_INCLUDED__
struct shader_t
{
const void* shaderBlob;
unsigned int shaderBlobSize;
};
#ifdef __cplusplus
extern "C" {
#endif
shader_t getDX10VertexShader();
shader_t getDX11VertexShader(unsigned long feature_level);
shader_t getDX12VertexShader();
shader_t getDX10PixelShader();
shader_t getDX11PixelShader(unsigned long feature_level);
shader_t getDX12PixelShader();
#ifdef __cplusplus
}
#endif
#endif