Navigation Menu

Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed a minor bug with texture blending.
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnyps committed Jul 17, 2010
1 parent 24c126f commit 82b8252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11render.c
Expand Up @@ -1452,7 +1452,7 @@ X11_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
XRenderSetPictureTransform(data->display, texturedata->picture, &xform);

XRenderComposite(data->display, texturedata->blend_op,
texturedata->picture, None, data->drawable_pict,
texturedata->picture, pict, data->drawable_pict,
0, 0, 0, 0, dstrect->x, dstrect->y,
dstrect->w, dstrect->h);

Expand Down

0 comments on commit 82b8252

Please sign in to comment.