#pragma section-numbers off #pragma disable-camelcase = SDL_GetRenderDrawBlendMode = Use this function to get the blend mode used for drawing operations. <> == Syntax == {{{#!highlight cpp int SDL_GetRenderDrawBlendMode(SDL_Renderer* renderer, SDL_BlendMode* blendMode) }}} == Function Parameters == ||'''renderer'''||the rendering context|| ||'''blendMode'''||a pointer filled in with the current [[SDL_BlendMode]]; see [[#blendMode|Remarks]] for details|| == Return Value == Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp You can add your code example here }}} == Remarks == <> '''blendMode''' will be filled in with one of the following: <> == Related Functions == .[[SDL_SetRenderDrawBlendMode]] ---- [[CategoryAPI]], [[CategoryRender]]