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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-07-02 19:27:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-02 19:27:05 +0300
commit9f80429ab6a83a37ad94cbeee7f6ede4dec84f1a (patch)
treec11aa3a1db4c77256483aa9c2a5c5d571de6d1dc /source/blender/editors/screen/area.c
parentc2814f5b28235f8cd621ea9dc965b37c97801d76 (diff)
Cleanup: use _f, _i suffix for GPU state API
Diffstat (limited to 'source/blender/editors/screen/area.c')
-rw-r--r--source/blender/editors/screen/area.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 207047c2ad3..46bbc0fdf4f 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -2466,7 +2466,7 @@ void ED_region_info_draw_multiline(ARegion *ar, const char *text_array[], float
rect.ymin = rect.ymax - header_height * num_lines;
/* setup scissor */
- GPU_scissor_geti(scissor);
+ GPU_scissor_get_i(scissor);
GPU_scissor(rect.xmin, rect.ymin,
BLI_rcti_size_x(&rect) + 1, BLI_rcti_size_y(&rect) + 1);