qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [qemu/qemu] d98bc0: opengl: add shader build infrastructu


From: GitHub
Subject: [Qemu-commits] [qemu/qemu] d98bc0: opengl: add shader build infrastructure
Date: Tue, 05 May 2015 08:00:06 -0700

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: d98bc0b654b97d130338e76e0928296f84e6d6fd
      
https://github.com/qemu/qemu/commit/d98bc0b654b97d130338e76e0928296f84e6d6fd
  Author: Gerd Hoffmann <address@hidden>
  Date:   2015-05-05 (Tue, 05 May 2015)

  Changed paths:
    M Makefile
    A scripts/shaderinclude.pl

  Log Message:
  -----------
  opengl: add shader build infrastructure

perl script to transform shader programs into c include files with
static string constands containing the shader programs, so we can
easily embed them into qemu.  Also some Makefile logic for them.

Signed-off-by: Gerd Hoffmann <address@hidden>
Reviewed-by: Max Reitz <address@hidden>


  Commit: 985e1c9b008e5e8b6eac41546266d3abcfa6282a
      
https://github.com/qemu/qemu/commit/985e1c9b008e5e8b6eac41546266d3abcfa6282a
  Author: Gerd Hoffmann <address@hidden>
  Date:   2015-05-05 (Tue, 05 May 2015)

  Changed paths:
    A include/ui/shader.h
    M ui/Makefile.objs
    A ui/shader.c

  Log Message:
  -----------
  opengl: add shader helper functions.

Helper functions to compile, link and run opengl shader programs.

Signed-off-by: Gerd Hoffmann <address@hidden>


  Commit: cd2bc889e5b30c69926fc1511b6522e7cb4c705d
      
https://github.com/qemu/qemu/commit/cd2bc889e5b30c69926fc1511b6522e7cb4c705d
  Author: Gerd Hoffmann <address@hidden>
  Date:   2015-05-05 (Tue, 05 May 2015)

  Changed paths:
    M Makefile
    M configure
    M include/ui/console.h
    M include/ui/shader.h
    M ui/Makefile.objs
    A ui/console-gl.c
    M ui/shader.c
    A ui/shader/texture-blit.frag
    A ui/shader/texture-blit.vert

  Log Message:
  -----------
  console-gl: add opengl rendering helper functions

Signed-off-by: Gerd Hoffmann <address@hidden>
Reviewed-by: Max Reitz <address@hidden>


  Commit: 19dadfccd0124804e2790e7cb075c9df7cd3154f
      
https://github.com/qemu/qemu/commit/19dadfccd0124804e2790e7cb075c9df7cd3154f
  Author: Gerd Hoffmann <address@hidden>
  Date:   2015-05-05 (Tue, 05 May 2015)

  Changed paths:
    M include/ui/sdl2.h
    M ui/sdl2-2d.c
    M ui/sdl2-input.c
    M ui/sdl2.c

  Log Message:
  -----------
  sdl2: move SDL_* includes to sdl2.h

Signed-off-by: Gerd Hoffmann <address@hidden>
Reviewed-by: Max Reitz <address@hidden>


  Commit: 0b71a5d5caa4f709d37fa1d7786dffc2c94f8414
      
https://github.com/qemu/qemu/commit/0b71a5d5caa4f709d37fa1d7786dffc2c94f8414
  Author: Gerd Hoffmann <address@hidden>
  Date:   2015-05-05 (Tue, 05 May 2015)

  Changed paths:
    M include/ui/console.h
    M include/ui/sdl2.h
    M ui/Makefile.objs
    M ui/sdl.c
    M ui/sdl2-2d.c
    A ui/sdl2-gl.c
    M ui/sdl2.c
    M vl.c

  Log Message:
  -----------
  sdl2: add support for display rendering using opengl.

Add new sdl2-gl.c file, with display
rendering functions using opengl.

Signed-off-by: Gerd Hoffmann <address@hidden>
Reviewed-by: Max Reitz <address@hidden>


  Commit: e444ea34f8ec27acfa9ead7eaa9904238c831e69
      
https://github.com/qemu/qemu/commit/e444ea34f8ec27acfa9ead7eaa9904238c831e69
  Author: Max Reitz <address@hidden>
  Date:   2015-05-05 (Tue, 05 May 2015)

  Changed paths:
    M include/ui/console.h
    M ui/sdl2-2d.c

  Log Message:
  -----------
  sdl2: Fix RGB555

Reproducable with:

$ x86_64-softmmu/qemu-system-x86_64 \
    -kernel $vmlinuz_of_your_choice \
    -append vga=0x313 -sdl

Signed-off-by: Max Reitz <address@hidden>
Signed-off-by: Gerd Hoffmann <address@hidden>


  Commit: 874e9aeeeb74c5459639a93439a502d262847e68
      
https://github.com/qemu/qemu/commit/874e9aeeeb74c5459639a93439a502d262847e68
  Author: Peter Maydell <address@hidden>
  Date:   2015-05-05 (Tue, 05 May 2015)

  Changed paths:
    M Makefile
    M configure
    M include/ui/console.h
    M include/ui/sdl2.h
    A include/ui/shader.h
    A scripts/shaderinclude.pl
    M ui/Makefile.objs
    A ui/console-gl.c
    M ui/sdl.c
    M ui/sdl2-2d.c
    A ui/sdl2-gl.c
    M ui/sdl2-input.c
    M ui/sdl2.c
    A ui/shader.c
    A ui/shader/texture-blit.frag
    A ui/shader/texture-blit.vert
    M vl.c

  Log Message:
  -----------
  Merge remote-tracking branch 'remotes/kraxel/tags/pull-sdl-20150505-1' into 
staging

sdl2: add opengl support

# gpg: Signature made Tue May  5 10:36:25 2015 BST using RSA key ID D3E87138
# gpg: Good signature from "Gerd Hoffmann (work) <address@hidden>"
# gpg:                 aka "Gerd Hoffmann <address@hidden>"
# gpg:                 aka "Gerd Hoffmann (private) <address@hidden>"

* remotes/kraxel/tags/pull-sdl-20150505-1:
  sdl2: Fix RGB555
  sdl2: add support for display rendering using opengl.
  sdl2: move SDL_* includes to sdl2.h
  console-gl: add opengl rendering helper functions
  opengl: add shader helper functions.
  opengl: add shader build infrastructure

Signed-off-by: Peter Maydell <address@hidden>


Compare: https://github.com/qemu/qemu/compare/b4c5df7a15da...874e9aeeeb74

reply via email to

[Prev in Thread] Current Thread [Next in Thread]