Home
last modified time | relevance | path

Searched refs:emulationGl (Results 1 – 7 of 7) sorted by relevance

/hardware/google/gfxstream/host/gl/
DEmulationGl.cpp228 std::unique_ptr<EmulationGl> emulationGl(new EmulationGl()); in create() local
230 emulationGl->mFeatures = features; in create()
231 emulationGl->mWidth = width; in create()
232 emulationGl->mHeight = height; in create()
234 emulationGl->mEglDisplay = s_egl.eglGetDisplay(EGL_DEFAULT_DISPLAY); in create()
235 if (emulationGl->mEglDisplay == EGL_NO_DISPLAY) { in create()
241 if (!s_egl.eglInitialize(emulationGl->mEglDisplay, in create()
242 &emulationGl->mEglVersionMajor, in create()
243 &emulationGl->mEglVersionMinor)) { in create()
250 emulationGl->mEglDisplay, in create()
[all …]
/hardware/google/gfxstream/host/
DBuffer.cpp33 std::shared_ptr<Buffer> Buffer::create(gl::EmulationGl* emulationGl, vk::VkEmulation* emulationVk, in create() argument
38 if (emulationGl) { in create()
39 buffer->mBufferGl = emulationGl->createBuffer(size, handle); in create()
48 const bool vulkanOnly = emulationGl == nullptr; in create()
70 std::shared_ptr<Buffer> Buffer::onLoad(gl::EmulationGl* emulationGl, vk::VkEmulation*, in onLoad() argument
78 if (emulationGl) { in onLoad()
79 buffer->mBufferGl = emulationGl->loadBuffer(stream); in onLoad()
DColorBuffer.cpp53 std::shared_ptr<ColorBuffer> ColorBuffer::create(gl::EmulationGl* emulationGl, in create() argument
66 if (emulationGl) { in create()
68 colorBuffer->mColorBufferGl = emulationGl->loadColorBuffer(stream); in create()
74 emulationGl->createColorBuffer(width, height, format, frameworkFormat, handle); in create()
92 if (emulationGl) { in create()
103 …bool b271028352Workaround = emulationGl && strstr(emulationGl->getGlesRenderer().c_str(), "Intel"); in create()
126 std::shared_ptr<ColorBuffer> ColorBuffer::onLoad(gl::EmulationGl* emulationGl, in onLoad() argument
136 emulationGl, emulationVk, width, height, format, frameworkFormat, handle, stream); in onLoad()
DBuffer.h44 static std::shared_ptr<Buffer> create(gl::EmulationGl* emulationGl,
48 static std::shared_ptr<Buffer> onLoad(gl::EmulationGl* emulationGl,
DColorBuffer.h50 static std::shared_ptr<ColorBuffer> create(gl::EmulationGl* emulationGl,
57 static std::shared_ptr<ColorBuffer> onLoad(gl::EmulationGl* emulationGl,
DPostWorkerGl.h38 gl::DisplayGl* displayGl, gl::EmulationGl* emulationGl);
DPostWorkerGl.cpp52 DisplayGl* displayGl, gl::EmulationGl* emulationGl) in PostWorkerGl() argument
55 mEmulationGl(emulationGl) { in PostWorkerGl()