mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
swr: [rasterizer jitter] adjust extern "C" block scope
Signed-off-by: Tim Rowley <timothy.o.rowley@intel.com>
This commit is contained in:
parent
9f7d99fcfe
commit
61cc012e9a
1 changed files with 5 additions and 3 deletions
|
|
@ -47,8 +47,7 @@
|
|||
#define JITCALL
|
||||
#endif
|
||||
|
||||
extern "C"
|
||||
{
|
||||
|
||||
|
||||
struct ShaderInfo;
|
||||
|
||||
|
|
@ -64,6 +63,9 @@ struct JIT_COMPILE_INPUT
|
|||
bool enableJitSampler;
|
||||
};
|
||||
|
||||
extern "C"
|
||||
{
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
/// @brief Create JIT context.
|
||||
HANDLE JITCALL JitCreateContext(uint32_t targetSimdWidth, const char* arch);
|
||||
|
|
@ -107,5 +109,5 @@ PFN_SO_FUNC JITCALL JitCompileStreamout(HANDLE hJitContext, const STREAMOUT_COMP
|
|||
/// @param state - blend state to build function from
|
||||
PFN_BLEND_JIT_FUNC JITCALL JitCompileBlend(HANDLE hJitContext, const BLEND_COMPILE_STATE& state);
|
||||
|
||||
}
|
||||
|
||||
}; // extern "C"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue