X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=gacela_draw.lisp;h=947da6b5381173c4729911690b09d55ec7cd27d9;hb=2fbfb3420ca25c0228e04b5696d42abce5e055ed;hp=5d10fa4eebb8a2d9ed5009020e8f52ca73ae655e;hpb=c0c271a74a11ccba4e5c2c51e46045c9073c32a6;p=gacela.git diff --git a/gacela_draw.lisp b/gacela_draw.lisp index 5d10fa4..947da6b 100644 --- a/gacela_draw.lisp +++ b/gacela_draw.lisp @@ -93,8 +93,8 @@ (cond (image (let ((width (surface-w image)) (height (surface-h image)) (byteorder (if (= (SDL_ByteOrder) SDL_LIL_ENDIAN) - (if (= (surface-format-BytesPerPixel image) 3) GL_BGR GL_BGRA) - (if (= (surface-format-BytesPerPixel image) 3) GL_RGB GL_RGBA))) + (if (= (surface-format-BytesPerPixel image) 3) GL_RGB GL_RGBA) + (if (= (surface-format-BytesPerPixel image) 3) GL_BGR GL_BGRA))) (texture (car (glGenTextures 1)))) (glBindTexture GL_TEXTURE_2D texture) (glTexImage2D GL_TEXTURE_2D 0 3 width height 0 byteorder GL_UNSIGNED_BYTE (surface-pixels image))