X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgacela_draw.scm;h=5fbc92e6f65e2c7f6e2da579861f97da276b56fa;hb=556fd6c80969ab9a474f2c66ae1aceec3866f16a;hp=b9a2c5a06967fb679132b5db4ee362be1a7d5f82;hpb=9b857e9d17bed85e25de1111824495a977294aea;p=gacela.git diff --git a/src/gacela_draw.scm b/src/gacela_draw.scm index b9a2c5a..5fbc92e 100644 --- a/src/gacela_draw.scm +++ b/src/gacela_draw.scm @@ -27,7 +27,7 @@ (define-macro (progn-textures . code) `(let ((result #f)) - (init-gacela) + (init-video-mode) (glEnable GL_TEXTURE_2D) (set! result (begin ,@code)) (glDisable GL_TEXTURE_2D) @@ -60,9 +60,10 @@ (else (glVertex2f x y)))) (define (load-image-for-texture filename) - (init-gacela) + (init-sdl) (let ((image (IMG_Load filename))) (cond (image + (SDL_SetAlpha image 0 0) (let* ((width (surface-w image)) (height (surface-h image)) (power-2 (nearest-power-of-two (min width height))) (resized-image #f)) @@ -85,14 +86,15 @@ (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)) (glTexParameteri GL_TEXTURE_2D GL_TEXTURE_MIN_FILTER min-filter) (glTexParameteri GL_TEXTURE_2D GL_TEXTURE_MAG_FILTER mag-filter) + (set-texture-size! texture real-w real-h) texture)))))) (define* (draw-image filename #:optional (zoom 1)) @@ -121,12 +123,13 @@ (draw v1 v2 v3 v4)))) (define* (draw-rectangle width height #:key texture color) - (draw-quad (list (- width) height 0) - (list width height 0) - (list width (- height) 0) - (list (- width) (- height) 0) - #:texture texture - #:color color)) + (let ((w (/ width 2)) (h (/ height 2))) + (draw-quad (list (- w) h 0) + (list w h 0) + (list w (- h) 0) + (list (- w) (- h) 0) + #:texture texture + #:color color))) (define* (draw-square #:key (size 1) texture color) (draw-rectangle size size #:texture texture #:color color))