PyDoc: correct sphinx syntax for gpu.state.blend_set
This commit is contained in:
@@ -85,19 +85,22 @@ PyDoc_STRVAR(
|
||||
" Defines the fixed pipeline blending equation.\n"
|
||||
"\n"
|
||||
" :param mode: The type of blend mode.\n"
|
||||
" * ``NONE`` No blending.\n"
|
||||
" * ``ALPHA`` The original color channels are interpolated according to the alpha value.\n"
|
||||
" * ``ALPHA_PREMULT`` The original color channels are interpolated according to the alpha "
|
||||
"value with the new colors pre-multiplied by this value.\n"
|
||||
" * ``ADDITIVE`` The original color channels are added by the corresponding ones.\n"
|
||||
" * ``ADDITIVE_PREMULT`` The original color channels are added by the corresponding ones "
|
||||
" * ``NONE`` No blending.\n"
|
||||
" * ``ALPHA`` The original color channels are interpolated according to the alpha "
|
||||
"value.\n"
|
||||
" * ``ALPHA_PREMULT`` The original color channels are interpolated according to the "
|
||||
"alpha value with the new colors pre-multiplied by this value.\n"
|
||||
" * ``ADDITIVE`` The original color channels are added by the corresponding ones.\n"
|
||||
" * ``ADDITIVE_PREMULT`` The original color channels are added by the corresponding ones "
|
||||
"that are pre-multiplied by the alpha value.\n"
|
||||
" * ``MULTIPLY`` The original color channels are multiplied by the corresponding ones.\n"
|
||||
" * ``SUBTRACT`` The original color channels are subtracted by the corresponding ones.\n"
|
||||
" * ``INVERT`` The original color channels are replaced by its complementary color.\n"
|
||||
//" * ``OIT``.\n"
|
||||
//" * ``BACKGROUND`` .\n"
|
||||
//" * ``CUSTOM`` .\n"
|
||||
" * ``MULTIPLY`` The original color channels are multiplied by the corresponding ones.\n"
|
||||
" * ``SUBTRACT`` The original color channels are subtracted by the corresponding ones.\n"
|
||||
" * ``INVERT`` The original color channels are replaced by its complementary color.\n"
|
||||
#if 0
|
||||
" * ``OIT``.\n"
|
||||
" * ``BACKGROUND`` .\n"
|
||||
" * ``CUSTOM`` .\n"
|
||||
#endif
|
||||
" :type mode: str\n");
|
||||
static PyObject *pygpu_state_blend_set(PyObject *UNUSED(self), PyObject *value)
|
||||
{
|
||||
|
Reference in New Issue
Block a user