Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gpu_shader_geometry.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0ae96a1f72512f989e3f929b958101e14e2e296 (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
uniform int PrimitiveIdBase;
uniform int osd_active_uv_offset;

varying vec3 varnormal;
varying vec3 varposition;

in block {
	VertexData v;
} inpt[4];

uniform bool osd_flat_shading;
uniform int osd_fvar_count;

#define INTERP_FACE_VARYING_2(result, fvarOffset, tessCoord)  \
	{ \
		vec2 v[4]; \
		int primOffset = (gl_PrimitiveID + PrimitiveIdBase) * 4; \
		for (int i = 0; i < 4; ++i) { \
			int index = (primOffset + i) * osd_fvar_count + fvarOffset; \
			v[i] = vec2(texelFetch(FVarDataBuffer, index).s, \
			            texelFetch(FVarDataBuffer, index + 1).s); \
		} \
		result = mix(mix(v[0], v[1], tessCoord.s), \
		             mix(v[3], v[2], tessCoord.s), \
		             tessCoord.t); \
	}

uniform samplerBuffer FVarDataBuffer;

out block {
	VertexData v;
} outpt;

void set_mtface_vertex_attrs(vec2 st);

void emit_flat(int index, vec3 normal)
{
	outpt.v.position = inpt[index].v.position;
	outpt.v.normal = normal;

	/* Compatibility */
	varnormal = outpt.v.normal;
	varposition = outpt.v.position.xyz;

	/* TODO(sergey): Only uniform subdivisions atm. */
	vec2 quadst[4] = vec2[](vec2(0,0), vec2(1,0), vec2(1,1), vec2(0,1));
	vec2 st = quadst[index];

	INTERP_FACE_VARYING_2(outpt.v.uv, osd_active_uv_offset, st);

	set_mtface_vertex_attrs(st);

	gl_Position = gl_ProjectionMatrix * inpt[index].v.position;
	EmitVertex();
}

void emit_smooth(int index)
{
	outpt.v.position = inpt[index].v.position;
	outpt.v.normal = inpt[index].v.normal;

	/* Compatibility */
	varnormal = outpt.v.normal;
	varposition = outpt.v.position.xyz;

	/* TODO(sergey): Only uniform subdivisions atm. */
	vec2 quadst[4] = vec2[](vec2(0,0), vec2(1,0), vec2(1,1), vec2(0,1));
	vec2 st = quadst[index];

	INTERP_FACE_VARYING_2(outpt.v.uv, osd_active_uv_offset, st);

	set_mtface_vertex_attrs(st);

	gl_Position = gl_ProjectionMatrix * inpt[index].v.position;
	EmitVertex();
}

void main()
{
	gl_PrimitiveID = gl_PrimitiveIDIn;

	if (osd_flat_shading) {
		vec3 A = (inpt[0].v.position - inpt[1].v.position).xyz;
		vec3 B = (inpt[3].v.position - inpt[1].v.position).xyz;
		vec3 flat_normal = normalize(cross(B, A));
		emit_flat(0, flat_normal);
		emit_flat(1, flat_normal);
		emit_flat(3, flat_normal);
		emit_flat(2, flat_normal);
	}
	else {
		emit_smooth(0);
		emit_smooth(1);
		emit_smooth(3);
		emit_smooth(2);
	}
	EndPrimitive();
}

void set_mtface_vertex_attrs(vec2 st) {