-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphong.frag.h
More file actions
44 lines (43 loc) · 2.39 KB
/
phong.frag.h
File metadata and controls
44 lines (43 loc) · 2.39 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/********************************************************************************
* Copyright (c) 2024 Pleshkov Maksim
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
* which is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
********************************************************************************/
constexpr char phong_frag[] = {
0x23, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x31,
0x31, 0x30, 0x0d, 0x0a, 0x0d, 0x0a, 0x76, 0x61, 0x72, 0x79,
0x69, 0x6e, 0x67, 0x20, 0x76, 0x65, 0x63, 0x33, 0x20, 0x76,
0x56, 0x65, 0x72, 0x74, 0x65, 0x78, 0x3b, 0x0d, 0x0a, 0x76,
0x61, 0x72, 0x79, 0x69, 0x6e, 0x67, 0x20, 0x76, 0x65, 0x63,
0x33, 0x20, 0x76, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x3b,
0x0d, 0x0a, 0x76, 0x61, 0x72, 0x79, 0x69, 0x6e, 0x67, 0x20,
0x76, 0x65, 0x63, 0x34, 0x20, 0x76, 0x43, 0x6f, 0x6c, 0x6f,
0x72, 0x3b, 0x0d, 0x0a, 0x0d, 0x0a, 0x76, 0x6f, 0x69, 0x64,
0x20, 0x6d, 0x61, 0x69, 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0d,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x65, 0x63, 0x33, 0x20,
0x6c, 0x69, 0x67, 0x68, 0x74, 0x44, 0x69, 0x72, 0x20, 0x3d,
0x20, 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x69, 0x7a, 0x65,
0x28, 0x67, 0x6c, 0x5f, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x5b, 0x30, 0x5d, 0x2e, 0x70,
0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x78, 0x79,
0x7a, 0x20, 0x2d, 0x20, 0x76, 0x56, 0x65, 0x72, 0x74, 0x65,
0x78, 0x29, 0x3b, 0x0d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x66,
0x6c, 0x6f, 0x61, 0x74, 0x20, 0x64, 0x69, 0x66, 0x66, 0x75,
0x73, 0x65, 0x20, 0x3d, 0x20, 0x6d, 0x61, 0x78, 0x28, 0x64,
0x6f, 0x74, 0x28, 0x76, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c,
0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x44, 0x69, 0x72,
0x29, 0x2c, 0x20, 0x30, 0x2e, 0x30, 0x29, 0x2a, 0x30, 0x2e,
0x38, 0x3b, 0x0d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x67, 0x6c,
0x5f, 0x46, 0x72, 0x61, 0x67, 0x43, 0x6f, 0x6c, 0x6f, 0x72,
0x20, 0x3d, 0x20, 0x76, 0x65, 0x63, 0x34, 0x28, 0x76, 0x65,
0x63, 0x33, 0x28, 0x30, 0x2e, 0x32, 0x20, 0x2b, 0x20, 0x64,
0x69, 0x66, 0x66, 0x75, 0x73, 0x65, 0x29, 0x2c, 0x20, 0x31,
0x2e, 0x30, 0x29, 0x2a, 0x76, 0x43, 0x6f, 0x6c, 0x6f, 0x72,
0x3b, 0x0d, 0x0a, 0x7d
};
constexpr int phong_frag_len = 294;