HomeSort by relevance Sort by last modified time
    Searched refs:wsi (Results 1 - 25 of 28) sorted by null

1 2

  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiSurfaceTests.hpp 32 namespace wsi namespace in namespace:vkt
35 void createSurfaceTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
37 } // wsi
vktWsiSwapchainTests.hpp 32 namespace wsi namespace in namespace:vkt
35 void createSwapchainTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
37 } // wsi
vktWsiTests.hpp 23 * \brief WSI Tests
31 namespace wsi namespace in namespace:vkt
36 } // wsi
vktWsiTests.cpp 21 * \brief WSI Tests
33 namespace wsi namespace in namespace:vkt
39 void createTypeSpecificTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType)
47 for (int typeNdx = 0; typeNdx < vk::wsi::TYPE_LAST; ++typeNdx)
49 const vk::wsi::Type wsiType = (vk::wsi::Type)typeNdx;
59 return createTestGroup(testCtx, "wsi", "WSI Tests", createWsiTests);
62 } // wsi
vktWsiSurfaceTests.cpp 68 namespace wsi namespace in namespace:vkt
75 using namespace vk::wsi;
150 // must support creating native display & window for that WSI type.
166 // See createDisplay - assuming that wsi::Display was supported platform port
609 void createSurfaceTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType)
628 } // wsi
vktWsiSwapchainTests.cpp 57 namespace wsi namespace in namespace:vkt
64 using namespace vk::wsi;
250 // must support creating native display & window for that WSI type.
266 // See createDisplay - assuming that wsi::Display was supported platform port
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkWsiPlatform.cpp 21 * \brief WSI Platform Abstraction.
28 namespace wsi namespace in namespace:vk
36 } // wsi
vkPlatform.cpp 67 wsi::Display* Platform::createWsiDisplay (wsi::Type) const
69 TCU_THROW(NotSupportedError, "WSI not supported");
vkPlatform.hpp 99 namespace wsi namespace in namespace:vk
102 } // wsi
140 virtual wsi::Display* createWsiDisplay (wsi::Type wsiType) const;
vkWsiUtil.hpp 23 * \brief Windowing System Integration (WSI) Utilities.
34 namespace wsi namespace in namespace:vk
101 } // wsi
vkWsiPlatform.hpp 23 * \brief WSI Platform Abstraction.
32 namespace wsi namespace in namespace:vk
65 // WSI implementation-specific APIs
176 } // wsi
vkDefs.hpp 106 namespace wsi namespace in namespace:vk
121 } // wsi
vkWsiUtil.cpp 21 * \brief Windowing System Integration (WSI) Utilities.
32 namespace wsi namespace in namespace:vk
35 //! Get canonical WSI name that should be used for example in test case and group names.
68 // and partly by WSI extensions, and platform ports should not need to override
131 // Update this function if you add more WSI implementations
231 DE_FATAL("Unknown WSI type");
333 } // wsi
  /external/deqp/framework/platform/win32/
tcuWin32VulkanPlatform.hpp 42 vk::wsi::Display* createWsiDisplay (vk::wsi::Type wsiType) const;
tcuWin32VulkanPlatform.cpp 51 class VulkanWindow : public vk::wsi::Win32WindowInterface
55 : vk::wsi::Win32WindowInterface (vk::pt::Win32WindowHandle(window->getHandle()))
69 class VulkanDisplay : public vk::wsi::Win32DisplayInterface
73 : vk::wsi::Win32DisplayInterface (vk::pt::Win32InstanceHandle(instance))
77 vk::wsi::Window* createWindow (const Maybe<UVec2>& initialSize) const
208 vk::wsi::Display* VulkanPlatform::createWsiDisplay (vk::wsi::Type wsiType) const
210 if (wsiType != vk::wsi::TYPE_WIN32)
211 TCU_THROW(NotSupportedError, "WSI type not supported");
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.hpp 57 vk::wsi::Display* createWsiDisplay (vk::wsi::Type wsiType) const;
tcuAndroidPlatform.cpp 211 class VulkanWindow : public vk::wsi::AndroidWindowInterface
215 : vk::wsi::AndroidWindowInterface (vk::pt::AndroidNativeWindowPtr(window.getNativeWindow()))
229 class VulkanDisplay : public vk::wsi::Display
237 vk::wsi::Window* createWindow (const Maybe<UVec2>& initialSize) const
337 vk::wsi::Display* Platform::createWsiDisplay (vk::wsi::Type wsiType) const
339 if (wsiType == vk::wsi::TYPE_ANDROID)
342 TCU_THROW(NotSupportedError, "WSI type not supported on Android");
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorPreserveSpace.java 71 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), false, thisSheet); local
72 wsi.setUid(handler.nextUid());
74 thisSheet.setPreserveSpaces(wsi);
ProcessorStripSpace.java 70 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), true, thisSheet); local
71 wsi.setUid(handler.nextUid());
73 thisSheet.setStripSpaces(wsi);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
Stylesheet.java 644 * @param wsi WhiteSpaceInfo element to add to list
646 public void setStripSpaces(WhiteSpaceInfo wsi)
654 m_whitespaceStrippingElements.addElement(wsi);
699 * @param wsi WhiteSpaceInfo element to add to list
701 public void setPreserveSpaces(WhiteSpaceInfo wsi)
709 m_whitespacePreservingElements.addElement(wsi);
    [all...]
StylesheetRoot.java 884 * @param wsi A WhiteSpaceInfo element to add to the list of WhiteSpaceInfo elements.
886 void recomposeWhiteSpaceInfo(WhiteSpaceInfo wsi)
891 m_whiteSpaceInfoList.setTemplate(wsi);
    [all...]
  /external/vulkan-validation-layers/
vk-layer-generate.py 181 self.wsi = sys.argv[1]
    [all...]
vk-generate.py 245 wsi = {
258 if len(sys.argv) < 3 or sys.argv[1] not in wsi or sys.argv[2] not in subcommands:
259 print("Usage: %s <wsi> <subcommand> [options]" % sys.argv[0])
  /external/vulkan-validation-layers/loader/
vk-loader-generate.py 388 # This was intended to reject WSI calls, but actually rejects ALL extensions
389 # TODO: Make this WSI-extension specific
457 wsi = {
474 if len(sys.argv) < 3 or sys.argv[1] not in wsi or sys.argv[2] not in subcommands:
475 print("Usage: %s <wsi> <subcommand> [options]" % sys.argv[0])
477 print("Available wsi (displayservers) are: %s" % " ".join(wsi))
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestPackage.cpp 378 addChild(wsi::createTests (m_testCtx));

Completed in 945 milliseconds

1 2