From 3c8c9760865d14c8dffa3a4cd091e4027b1501e3 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 20 Nov 2018 07:32:49 +1100 Subject: Cleanup: gpu docs --- doc/python_api/examples/gpu.2.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'doc/python_api/examples/gpu.2.py') diff --git a/doc/python_api/examples/gpu.2.py b/doc/python_api/examples/gpu.2.py index 8188110d096..d1e8ac32589 100644 --- a/doc/python_api/examples/gpu.2.py +++ b/doc/python_api/examples/gpu.2.py @@ -8,12 +8,13 @@ from gpu_extras.batch import batch_for_shader coords = [(1, 1, 1), (-2, 0, 0), (-2, -1, 3), (0, 1, 1)] shader = gpu.shader.from_builtin('3D_UNIFORM_COLOR') -batch = batch_for_shader(shader, 'LINES', {"pos" : coords}) +batch = batch_for_shader(shader, 'LINES', {"pos": coords}) + def draw(): shader.bind() shader.uniform_float("color", (1, 1, 0, 1)) batch.draw(shader) -bpy.types.SpaceView3D.draw_handler_add(draw, (), 'WINDOW', 'POST_VIEW') +bpy.types.SpaceView3D.draw_handler_add(draw, (), 'WINDOW', 'POST_VIEW') -- cgit v1.2.3