Home
last modified time | relevance | path

Searched refs:graphicsApi (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/libs/renderengine/include/renderengine/
DRenderEngine.h146 static bool canSupport(GraphicsApi graphicsApi);
155 static void teardown(GraphicsApi graphicsApi);
307 RenderEngine::GraphicsApi graphicsApi; member
328 graphicsApi(_graphicsApi), in RenderEngineCreationArgs()
364 Builder& setGraphicsApi(RenderEngine::GraphicsApi graphicsApi) { in setGraphicsApi()
365 this->graphicsApi = graphicsApi; in setGraphicsApi()
375 contextPriority, threaded, graphicsApi, skiaBackend); in build()
387 RenderEngine::GraphicsApi graphicsApi = RenderEngine::GraphicsApi::GL; member
/frameworks/native/libs/renderengine/skia/
DSkiaVkRenderEngine.cpp67 bool RenderEngine::canSupport(GraphicsApi graphicsApi) { in canSupport() argument
68 switch (graphicsApi) { in canSupport()
90 void RenderEngine::teardown(GraphicsApi graphicsApi) { in teardown() argument
91 switch (graphicsApi) { in teardown()
/frameworks/native/libs/renderengine/skia/compat/
DGaneshBackendTexture.cpp49 const GrBackendApi graphicsApi = grContext->backend(); in GaneshBackendTexture() local
50 if (graphicsApi == GrBackendApi::kOpenGL) { in GaneshBackendTexture()
59 } else if (graphicsApi == GrBackendApi::kVulkan) { in GaneshBackendTexture()
69 LOG_ALWAYS_FATAL("Unexpected graphics API %u", static_cast<unsigned>(graphicsApi)); in GaneshBackendTexture()
/frameworks/native/libs/renderengine/
DRenderEngine.cpp50 args.graphicsApi == RenderEngine::GraphicsApi::GL ? "GL" : "Vulkan"); in create()
56 args.graphicsApi == GraphicsApi::GL ? "SkiaGL" : "SkiaVK", in create()
68 if (args.graphicsApi == GraphicsApi::VK) { in create()
/frameworks/native/libs/renderengine/benchmark/
DRenderEngineBench.cpp68 RenderEngine::GraphicsApi graphicsApi) { in createRenderEngine() argument
77 .setGraphicsApi(graphicsApi) in createRenderEngine()
/frameworks/native/libs/renderengine/tests/
DRenderEngineTest.cpp118 virtual renderengine::RenderEngine::GraphicsApi graphicsApi() = 0;
120 bool apiSupported() { return renderengine::RenderEngine::canSupport(graphicsApi()); } in apiSupported()
131 .setGraphicsApi(graphicsApi()) in createRenderEngine()
142 renderengine::RenderEngine::GraphicsApi graphicsApi() { in graphicsApi() function in android::renderengine::SkiaGLESRenderEngineFactory
155 renderengine::RenderEngine::GraphicsApi graphicsApi() override { in graphicsApi() function in android::renderengine::GaneshVkRenderEngineFactory
170 renderengine::RenderEngine::GraphicsApi graphicsApi() override { in graphicsApi() function in android::renderengine::GraphiteVkRenderEngineFactory
2268 EXPECT_TRUE(GetParam()->graphicsApi() == renderengine::RenderEngine::GraphicsApi::VK); in TEST_P()