-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathxxGraphicD3DAsm.h
More file actions
26 lines (24 loc) · 1.11 KB
/
Copy pathxxGraphicD3DAsm.h
File metadata and controls
26 lines (24 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//==============================================================================
// xxGraphic : Direct3D Assembly Shader Header
//
// Copyright (c) 2019-2026 TAiGA
// https://github.com/metarutaiga/xxGraphic
//==============================================================================
#pragma once
#include "xxSystem.h"
//==============================================================================
// Direct3D 8.0 Assembly Shader
//==============================================================================
extern const DWORD vertexShaderCode10[];
extern const DWORD vertexShaderCode11[];
extern const DWORD pixelShaderCode10[];
extern const DWORD vertexShaderCode10Size;
extern const DWORD vertexShaderCode11Size;
extern const DWORD pixelShaderCode10Size;
//==============================================================================
// Direct3D 10.0 Assembly Shader
//==============================================================================
extern const DWORD vertexShaderCode40[];
extern const DWORD pixelShaderCode40[];
extern const DWORD vertexShaderCode40Size;
extern const DWORD pixelShaderCode40Size;