gpu_set_ztestenable


描述

This function can be used to toggle z-buffer testing on or off, affecting how things will be drawn (in general only of use when working with 3D projects). Essentially, by default when z-testing is off and you have two objects drawing to the same space, both objects will be rendered regardless of whether one will over-draw the other, resulting in unnecessary draw calls. If you switch this on then the z-buffer is tested to see whether an object will be "visible" and not drawn if it's not. Note that this is the default behaviour, but you can change this by changing the type of comparison used for z-buffer testing (see the function gpu_set_zfunc.

By default z-buffer testing is off (false).


语法:

gpu_set_ztestenable(enable);


参数:

参数 描述
enable Enable or disable z-buffer testing (true or false).


返回:

N/A(无返回值)


例如:

gpu_set_ztestenable(true);
draw_sprite(spr_Background, 0, 0, 0);
gpu_set_ztestenable(false);

The above code switches on z-buffer testing to draw a background sprite and then switches it back off again to continue drawing.


上一页: GPU Functions
下一页: gpu_set_zfunc
© Copyright YoYo Games Ltd. 2018 All Rights Reserved