Skip to content

Commit 7a5165c

Browse files
committed
Limit batch size to 1
1 parent eda0ca8 commit 7a5165c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/renderer/webgl/pipelines/PostFXPipeline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var PostFXPipeline = new Class({
4646
{
4747
config.fragShader = GetFastValue(config, 'fragShader', ShaderSourceFS);
4848
config.vertShader = GetFastValue(config, 'vertShader', ShaderSourceVS);
49-
config.vertexCapacity = GetFastValue(config, 'vertexCapacity', 1);
49+
config.batchSize = GetFastValue(config, 'batchSize', 1);
5050
config.uniforms = GetFastValue(config, 'uniforms', [
5151
'uProjectionMatrix',
5252
'uMainSampler'

0 commit comments

Comments
 (0)