File tree 1 file changed +22
-4
lines changed 1 file changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ I will publish some Android OpenGL ES 3 feature learning articles on my **juejin
16
16
17
17
目前工程中有3个例子:
18
18
19
- Now, this project contains 3 samples.
19
+ Now, this project contains 5 samples.
20
20
21
21
22
22
@@ -28,19 +28,37 @@ Now, this project contains 3 samples.
28
28
29
29
[ https://juejin.im/post/5ca9863151882543f400b745 ] ( https://juejin.im/post/5ca9863151882543f400b745 )
30
30
31
-
31
+
32
32
33
33
- ** SampleTextureArray**
34
34
35
35
一个纹理数组的例子,通过使用sampler2DArray将一组纹理传给fragment shader
36
36
37
37
A sample demonstrates the usage of texture array. In the fragment shader, we use sampler2DArray to hold an array of texture.
38
38
39
-
40
-
39
+
41
40
42
41
- ** SampleBinaryProgram**
43
42
44
43
一个使用二进制GL program的例子,演示将link好的GL Program以文件的方式保存,以及读取GL program文件并加载
45
44
46
45
A sample demonstrates the usage of binary GL program. We can save the linked GL program to file and load a binary GL program from file.
46
+
47
+
48
+
49
+ - ** SampleFenceSync**
50
+
51
+ 一个使用栅栏做GL命令同步的例子
52
+
53
+ a sample of using fence to synchronize the GL commands.
54
+
55
+
56
+
57
+ - ** SampleMultiRenderTarget**
58
+
59
+ 一个多渲染目标的例子,可以一次渲染到多个纹理上
60
+
61
+ This is a sample of multiple render targets, with which we can render to multiple textures at a time.
62
+
63
+
64
+
You can’t perform that action at this time.
0 commit comments