CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Common/GPU/D3D9/D3DCompilerLoader.h
Views: 1401
1
#pragma once
2
#include "ppsspp_config.h"
3
4
#include <Windows.h>
5
#include <D3Dcompiler.h>
6
7
bool LoadD3DCompilerDynamic();
8
9
HRESULT dyn_D3DCompile(LPCSTR pSrcData, UINT SrcDataSize, LPCSTR pFileName, CONST D3D_SHADER_MACRO* pDefines,
10
LPD3DINCLUDE pInclude, LPCSTR pEntrypoint, LPCSTR pTarget,
11
UINT Flags1, UINT Flags2, LPD3DBLOB* ppShader, LPD3DBLOB* ppErrorMsgs);
12
13
bool UnloadD3DCompiler();
14
15
int GetD3DCompilerVersion();
16
17