#pragma section-numbers off #pragma disable-camelcase = SDL_GetSurfaceBlendMode = Use this function to get the blend mode used for blit operations. <> == Syntax == {{{#!highlight cpp int SDL_GetSurfaceBlendMode(SDL_Surface* surface, SDL_BlendMode* blendMode) }}} == Function Parameters == ||'''surface'''||the [[SDL_Surface]] structure to query|| ||'''blendMode'''||a pointer filled in with the current [[SDL_BlendMode]]; see [[#Remarks|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_SetSurfaceBlendMode]] ---- [[CategoryAPI]], [[CategorySurface]]