Home
last modified time | relevance | path

Searched refs:exts (Results 1 – 12 of 12) sorted by relevance

/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/
DmakeSpec97 exts = set() variable
100 exts = set(deps.khrExtensions()) variable
103 exts = set(deps.ratifiedExtensions()) variable
106 exts = set(deps.allExtensions()) variable
121 extraexts -= exts
123 exts.update(extraexts)
161 if len(exts) > 0:
/hardware/google/gfxstream/common/detector/
DGraphicsDetectorVk.cpp41 const auto exts = VK_EXPECT_RV(physicalDevice.enumerateDeviceExtensionProperties()); in PopulateVulkanAvailabilityImpl() local
42 for (const auto& ext : exts) { in PopulateVulkanAvailabilityImpl()
DGraphicsDetectorVkExternalMemoryHost.cpp201 const auto exts = VK_EXPECT_RV(physicalDevice.enumerateDeviceExtensionProperties()); in PopulateVulkanExternalMemoryHostQuirkImpl() local
204 for (const auto& ext : exts) { in PopulateVulkanExternalMemoryHostQuirkImpl()
DVulkan.cpp166 const auto exts = VK_EXPECT_RV(physicalDevice.enumerateDeviceExtensionProperties()); in Load() local
167 for (const auto& ext : exts) { in Load()
/hardware/google/gfxstream/host/gl/
DGLESVersionDetector.cpp230 const std::string& exts) { in filterExtensionsBasedOnMaxVersion() argument
236 return exts; in filterExtensionsBasedOnMaxVersion()
249 android::base::split<std::string>(exts, " ", add); in filterExtensionsBasedOnMaxVersion()
DGLESVersionDetector.h38 GLESDispatchMaxVersion ver, const std::string& exts);
DTextureResize.cpp229 const char* exts = (const char*)s_gles2.glGetString(GL_EXTENSIONS); local
233 emugl::hasExtension(exts, "GL_EXT_color_buffer_float");
235 emugl::hasExtension(exts, "GL_EXT_color_buffer_half_float");
237 emugl::hasExtension(exts, "GL_OES_texture_float");
239 emugl::hasExtension(exts, "GL_OES_texture_half_float");
241 emugl::hasExtension(exts, "GL_OES_texture_float_linear");
/hardware/google/gfxstream/host/gl/glestranslator/EGL/
DEglOsApi_egl.cpp625 auto exts = mDispatcher.eglQueryString(mDisplay, EGL_EXTENSIONS); in createContext() local
632 …if (exts != nullptr && emugl::hasExtension(exts, "EGL_KHR_create_context_no_error") && disableVali… in createContext()
637 …if (exts != nullptr && emugl::hasExtension(exts, "EGL_EXT_create_context_robustness") && !disable_… in createContext()
689 auto exts = mDispatcher.eglQueryString(mDisplay, EGL_EXTENSIONS); in createWindowSurface() local
690 if (exts != nullptr && emugl::hasExtension(exts, "EGL_ANGLE_direct_composition")) { in createWindowSurface()
/hardware/google/gfxstream/guest/egl/
Degl.cpp933 static bool sWantES30OrAbove(const char* exts) { in sWantES30OrAbove() argument
934 if (strstr(exts, kGLESMaxVersion_3_0) || in sWantES30OrAbove()
935 strstr(exts, kGLESMaxVersion_3_1) || in sWantES30OrAbove()
936 strstr(exts, kGLESMaxVersion_3_2)) { in sWantES30OrAbove()
1044 std::vector<std::string> exts = getExtStringArray(); in getGLString() local
1047 for (unsigned int i = 0; i < exts.size(); i++) { in getGLString()
1048 totalSz += exts[i].size() + 1; // for space in getGLString()
1057 for (unsigned int i = 0; i < exts.size(); i++) { in getGLString()
1058 memcpy(current, exts[i].c_str(), exts[i].size()); in getGLString()
1059 current += exts[i].size(); in getGLString()
[all …]
/hardware/google/gfxstream/host/tests/
DVulkan_unittest.cpp361 const char* exts[] = { in testDeviceCreation() local
370 arraySize(exts), exts, in testDeviceCreation()
/hardware/google/gfxstream/common/end2end/
DGfxstreamEnd2EndTests.cpp554 const auto exts = VK_EXPECT_RV(physicalDevice.enumerateDeviceExtensionProperties()); in SetUpTypicalVkTestEnvironment() local
556 for (const auto& ext : exts) { in SetUpTypicalVkTestEnvironment()
/hardware/google/gfxstream/guest/GLESv2_enc/
DGL2Encoder.h83 void setExtensions(const char* exts, in setExtensions() argument
85 m_currExtensions = std::string(exts); in setExtensions()