OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RenderPipelineType
(Results
1 - 10
of
10
) sorted by null
/frameworks/base/libs/hwui/
Properties.h
256
enum class
RenderPipelineType
{
310
static
RenderPipelineType
getRenderPipelineType();
329
static void overrideRenderPipelineType(
RenderPipelineType
);
335
static
RenderPipelineType
sRenderPipelineType;
Properties.cpp
66
RenderPipelineType
Properties::sRenderPipelineType =
RenderPipelineType
::NotInitialized;
210
RenderPipelineType
Properties::getRenderPipelineType() {
211
if (
RenderPipelineType
::NotInitialized != sRenderPipelineType) {
218
sRenderPipelineType =
RenderPipelineType
::SkiaGL;
221
sRenderPipelineType =
RenderPipelineType
::SkiaVulkan;
224
sRenderPipelineType =
RenderPipelineType
::OpenGL;
230
void Properties::overrideRenderPipelineType(
RenderPipelineType
type) {
237
return
RenderPipelineType
::SkiaGL == renderType
238
||
RenderPipelineType
::SkiaVulkan == renderType
[
all
...]
/frameworks/base/libs/hwui/tests/unit/
CanvasContextTests.cpp
49
if (Properties::getRenderPipelineType() ==
RenderPipelineType
::SkiaVulkan) {
/frameworks/base/libs/hwui/renderthread/
CanvasContext.cpp
72
case
RenderPipelineType
::OpenGL:
75
case
RenderPipelineType
::SkiaGL:
78
case
RenderPipelineType
::SkiaVulkan:
91
case
RenderPipelineType
::OpenGL:
94
case
RenderPipelineType
::SkiaGL:
95
case
RenderPipelineType
::SkiaVulkan:
108
case
RenderPipelineType
::OpenGL:
111
case
RenderPipelineType
::SkiaGL:
114
case
RenderPipelineType
::SkiaVulkan:
126
case
RenderPipelineType
::OpenGL
[
all
...]
RenderThread.cpp
208
case
RenderPipelineType
::OpenGL:
211
case
RenderPipelineType
::SkiaGL:
212
case
RenderPipelineType
::SkiaVulkan:
EglManager.cpp
126
if (Properties::getRenderPipelineType() ==
RenderPipelineType
::SkiaGL) {
/frameworks/base/libs/hwui/tests/common/
TestUtils.cpp
55
if (Properties::getRenderPipelineType() ==
RenderPipelineType
::OpenGL) {
57
} else if (Properties::getRenderPipelineType() ==
RenderPipelineType
::SkiaGL) {
136
if (Properties::getRenderPipelineType() ==
RenderPipelineType
::SkiaVulkan) {
144
if (Properties::getRenderPipelineType() ==
RenderPipelineType
::SkiaVulkan) {
TestUtils.h
58
RenderPipelineType
oldType = Properties::getRenderPipelineType(); \
59
Properties::overrideRenderPipelineType(
RenderPipelineType
::pipeline); \
65
* Like gtests' TEST, but only runs with the OpenGL
RenderPipelineType
96
* Like RENDERTHREAD_TEST, but only runs with the OpenGL
RenderPipelineType
/frameworks/base/libs/hwui/pipeline/skia/
GLFunctorDrawable.cpp
54
if (Properties::getRenderPipelineType() ==
RenderPipelineType
::SkiaVulkan) {
SkiaOpenGLReadback.cpp
43
if (Properties::getRenderPipelineType() ==
RenderPipelineType
::SkiaVulkan) {
Completed in 74 milliseconds