Home
last modified time | relevance | path

Searched refs:EmulatedEglWindowSurface (Results 1 – 9 of 9) sorted by relevance

/hardware/google/gfxstream/host/gl/
DEmulatedEglWindowSurface.cpp37 EmulatedEglWindowSurface::EmulatedEglWindowSurface(EGLDisplay display, in EmulatedEglWindowSurface() function in gfxstream::gl::EmulatedEglWindowSurface
44 EmulatedEglWindowSurface::~EmulatedEglWindowSurface() { in ~EmulatedEglWindowSurface()
50 std::unique_ptr<EmulatedEglWindowSurface> EmulatedEglWindowSurface::create( in create()
56 std::unique_ptr<EmulatedEglWindowSurface> surface( in create()
57 new EmulatedEglWindowSurface(display, config, hndl)); in create()
67 void EmulatedEglWindowSurface::setColorBuffer(ColorBufferPtr p_colorBuffer) { in setColorBuffer()
81 void EmulatedEglWindowSurface::bind(EmulatedEglContextPtr p_ctx, BindType p_bindType) { in bind()
92 GLuint EmulatedEglWindowSurface::getWidth() const { return mWidth; } in getWidth()
93 GLuint EmulatedEglWindowSurface::getHeight() const { return mHeight; } in getHeight()
95 bool EmulatedEglWindowSurface::flushColorBuffer() { in flushColorBuffer()
[all …]
DEmulatedEglWindowSurface.h36 class EmulatedEglWindowSurface {
44 static std::unique_ptr<EmulatedEglWindowSurface> create(EGLDisplay display,
51 ~EmulatedEglWindowSurface();
100 static std::unique_ptr<EmulatedEglWindowSurface> onLoad(
109 EmulatedEglWindowSurface(const EmulatedEglWindowSurface& other) = delete;
111 EmulatedEglWindowSurface(EGLDisplay display, EGLConfig config, HandleType hndl);
126 typedef std::shared_ptr<EmulatedEglWindowSurface> EmulatedEglWindowSurfacePtr;
DEmulationGl.h133 std::unique_ptr<EmulatedEglWindowSurface> createEmulatedEglWindowSurface(
139 std::unique_ptr<EmulatedEglWindowSurface> loadEmulatedEglWindowSurface(
DAndroid.bp25 "EmulatedEglWindowSurface.cpp",
Dmeson.build32 'EmulatedEglWindowSurface.cpp',
DCMakeLists.txt25 EmulatedEglWindowSurface.cpp
DEmulationGl.cpp690 std::unique_ptr<EmulatedEglWindowSurface> EmulationGl::createEmulatedEglWindowSurface( in createEmulatedEglWindowSurface()
708 return EmulatedEglWindowSurface::create(mEglDisplay, config, width, height, handle); in createEmulatedEglWindowSurface()
711 std::unique_ptr<EmulatedEglWindowSurface> EmulationGl::loadEmulatedEglWindowSurface( in loadEmulatedEglWindowSurface()
715 return EmulatedEglWindowSurface::onLoad(stream, mEglDisplay, colorBuffers, contexts); in loadEmulatedEglWindowSurface()
DBUILD.bazel266 "EmulatedEglWindowSurface.cpp",
/hardware/google/gfxstream/host/
DFrameBuffer.cpp90 using gl::EmulatedEglWindowSurface;
3509 EmulatedEglWindowSurface* surface = it->second.first.get(); in flushEmulatedEglWindowSurfaceColorBuffer()
3713 bindDraw->bind(ctx, EmulatedEglWindowSurface::BIND_DRAW); in bindContext()
3714 bindRead->bind(ctx, EmulatedEglWindowSurface::BIND_READ); in bindContext()
3716 bindDraw->bind(ctx, EmulatedEglWindowSurface::BIND_READDRAW); in bindContext()