cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

egl-context.h (447B)


      1#ifndef EGL_CONTEXT_H
      2#define EGL_CONTEXT_H
      3
      4#include "ui/console.h"
      5#include "ui/egl-helpers.h"
      6
      7QEMUGLContext qemu_egl_create_context(DisplayChangeListener *dcl,
      8                                      QEMUGLParams *params);
      9void qemu_egl_destroy_context(DisplayChangeListener *dcl, QEMUGLContext ctx);
     10int qemu_egl_make_context_current(DisplayChangeListener *dcl,
     11                                  QEMUGLContext ctx);
     12
     13#endif /* EGL_CONTEXT_H */