mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-06 12:14:54 +01:00
Update imgui to latest.
This commit is contained in:
parent
ba877b6e78
commit
df94c38b0f
58 changed files with 17087 additions and 5583 deletions
26
ImGui/backends/imgui_win_shader_blobs.h
Normal file
26
ImGui/backends/imgui_win_shader_blobs.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue