Displaying 3 results from an estimated 3 matches for "vga_stat".
Did you mean:
vga_state
2006 Mar 16
0
[PATCH 3a/3] Add shadow VRAM
...R IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
+#include <signal.h>
+#include <setjmp.h>
+#include <emmintrin.h>
+
#include "vl.h"
#include "vga_int.h"
@@ -149,6 +153,8 @@ static uint8_t expand4to8[16];
VGAState *vga_state;
int vga_io_memory;
+
+int sse2_ok = 1;
static uint32_t vga_ioport_read(void *opaque, uint32_t addr)
{
@@ -1340,6 +1346,80 @@ void vga_invalidate_scanlines(VGAState *
}
}
+extern inline int cmp_vram(VGAState *s, int offset, int n)
+{
+ long *vp, *sp;
+
+ if (s->vram_shadow == NULL)...
2006 Jul 26
4
[PATCH] Add lost logic for VGA initialization
This patch adds lost logic for vga initialization. It was lost after
changing to new Qemu.
Signed-off-by : Kevin Tian <kevin.tian@intel.com>
Signed-off-by : Zhang Xiantao <xiantao.zhang@intel.com>
Thanks & Best Regards
-Xiantao
OTC,Intel Corporation
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
2006 Jun 02
1
Re: [Xen-changelog] [xen-unstable] [IA64][HVM] Enable CGA acceleration for VTI.
...- a/tools/ioemu/hw/vga.c Fri Jun 02 09:15:51 2006 +0100
> +++ b/tools/ioemu/hw/vga.c Fri Jun 02 09:20:58 2006 +0100
> @@ -1995,6 +1995,7 @@ void vga_common_init(VGAState *s, Displa
> s->get_resolution = vga_get_resolution;
> /* XXX: currently needed for display */
> vga_state = s;
> + vga_bios_init(s);
> }
>
>
> @@ -2082,7 +2083,6 @@ int vga_initialize(PCIBus *bus, DisplayS
> #endif
> }
>
> - vga_bios_init(s);
> return 0;
> }
>
> diff -r 639ad22eb7c8 -r e67432187b88 tools/ioemu/vl.c
> --- a/tools/ioem...