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

1 2

  /frameworks/base/libs/hwui/renderthread/
RenderThread.cpp 179 auto renderType = Properties::getRenderPipelineType();
180 switch (renderType) {
202 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t)renderType);
212 auto renderType = Properties::getRenderPipelineType();
213 switch (renderType) {
224 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t)renderType);
348 auto renderType = Properties::getRenderPipelineType();
349 switch (renderType) {
357 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t)renderType);
CanvasContext.cpp 70 auto renderType = Properties::getRenderPipelineType();
72 switch (renderType) {
83 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t)renderType);
90 auto renderType = Properties::getRenderPipelineType();
91 switch (renderType) {
100 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t)renderType);
107 auto renderType = Properties::getRenderPipelineType();
108 switch (renderType) {
119 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t)renderType);
125 auto renderType = Properties::getRenderPipelineType()
    [all...]
  /external/mesa3d/src/glx/tests/
fake_glx_screen.cpp 55 struct glx_context *shareList, int renderType)
58 (void) renderType;
fake_glx_screen.h 110 struct glx_context *shareList, int renderType)
113 (void) renderType;
  /external/mesa3d/src/glx/
driwindows_glx.c 161 struct glx_context *shareList, int renderType)
171 /* Check the renderType value */
172 if (!validate_renderType_against_config(config_base, renderType))
196 pcp->base.renderType = renderType;
226 uint32_t renderType = GLX_RGBA_TYPE;
228 /* Extract renderType from attribs */
232 renderType = attribs[i * 2 + 1];
245 /* Check the renderType value */
246 if (!validate_renderType_against_config(config_base, renderType)) {
    [all...]
glxcmds.c 229 * \param config GLX FBConfig which will support the returned renderType.
230 * \param renderType The context render type to be verified.
231 * \return True if the value of context renderType was approved, or 0 if no
236 int renderType)
238 switch (renderType) {
240 return (config->renderType & GLX_RGBA_BIT) != 0;
242 return (config->renderType & GLX_COLOR_INDEX_BIT) != 0;
244 return (config->renderType & GLX_RGBA_FLOAT_BIT_ARB) != 0;
246 return (config->renderType & GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT) != 0;
274 * \param renderType For FBConfigs, what is the rendering type
    [all...]
glxclient.h 114 int renderType);
421 int renderType;
490 int renderType);
813 struct glx_context *shareList, int renderType);
820 int renderType);
835 struct glx_context *shareList, int renderType);
indirect_glx.c 343 struct glx_context *shareList, int renderType)
366 gc->renderType = renderType;
444 int renderType = GLX_RGBA_TYPE;
454 * attributes to correctly set renderType.
458 renderType = attribs[i * 2 + 1];
461 return indirect_create_context(base, config_base, shareList, renderType);
glxconfig.h 78 GLint renderType;
applegl_glx.c 126 struct glx_context *shareList, int renderType)
drisw_glx.c 352 struct glx_context *shareList, int renderType)
362 /* Check the renderType value */
363 if (!validate_renderType_against_config(config_base, renderType))
387 pcp->base.renderType = renderType;
417 uint32_t renderType;
433 &major_ver, &minor_ver, &renderType, &flags,
437 /* Check the renderType value */
438 if (!validate_renderType_against_config(config_base, renderType)) {
473 pcp->base.renderType = renderType
    [all...]
glxext.c 363 GLint renderType = 0;
499 renderType = *bp++;
582 if (renderType != 0 && renderType != GLX_DONT_CARE) {
583 config->renderType = renderType;
584 config->floatMode = (renderType &
592 config->renderType =
    [all...]
dri2_glx.c 182 struct glx_context *shareList, int renderType)
189 /* Check the renderType value */
190 if (!validate_renderType_against_config(config_base, renderType))
214 pcp->base.renderType = renderType;
246 uint32_t renderType;
261 &major_ver, &minor_ver, &renderType, &flags,
265 /* Check the renderType value */
266 if (!validate_renderType_against_config(config_base, renderType))
306 /* The renderType is retrieved from attribs, or set to defaul
    [all...]
dri_glx.c 586 struct glx_context *shareList, int renderType)
597 /* Check the renderType value */
598 if (!validate_renderType_against_config(config_base, renderType))
622 pcp->base.renderType = renderType;
634 renderType, shared, hwContext, pcp);
glxconfig.c 140 *value_return = mode->renderType;
dri_common.c 294 if (glxValue != config->renderType)
  /external/deqp/modules/gles31/functional/
es31fTextureBufferTests.cpp 658 const RenderBits renderType = renderTypeCombinations[renderTypeNdx];
659 TestCaseGroup* const renderTypeGroup = new TestCaseGroup(context, toTestName(renderType).c_str(), toTestName(renderType).c_str());
668 renderTypeGroup->addChild(new TextureBufferCase(context.getTestContext(), context.getRenderContext(), GL_RGBA8, size, 0, 0, RENDERBITS_NONE, MODIFYBITS_NONE, renderType, name.c_str(), name.c_str()));
677 renderTypeGroup->addChild(new TextureBufferCase(context.getTestContext(), context.getRenderContext(), GL_RGBA8, bufferSize, 0, size, RENDERBITS_NONE, MODIFYBITS_NONE, renderType, name.c_str(), name.c_str()));
687 renderTypeGroup->addChild(new TextureBufferCase(context.getTestContext(), context.getRenderContext(), GL_RGBA8, bufferSize, offset, size, RENDERBITS_NONE, MODIFYBITS_NONE, renderType, name.c_str(), name.c_str()));
747 const RenderBits renderType = renderTypeCombinations[renderTypeNdx];
749 const string name (toTestName(renderType));
751 modifyTypeGroup->addChild(new TextureBufferCase(context.getTestContext(), context.getRenderContext(), GL_RGBA8, size, 0, 0, RENDERBITS_NONE, modifyType, renderType, name.c_str(), name.c_str()));
763 const RenderBits renderType = renderTypeCombinations[renderTypeNdx]
    [all...]
  /frameworks/base/libs/hwui/
Properties.cpp 220 auto renderType = getRenderPipelineType();
221 return RenderPipelineType::SkiaGL == renderType || RenderPipelineType::SkiaVulkan == renderType;
BakedOpDispatcher.cpp 253 const ClipBase* renderClip, TextRenderType renderType) {
292 bool forceFinish = (renderType == TextRenderType::Flush);
320 TextRenderType renderType =
322 renderText(renderer, op, state, clip, renderType);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_api.c     [all...]
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.h 92 GLXContext (*CreateNewContext)(Display *dpy, GLXFBConfig config, int renderType, GLXContext shareList, Bool direct);
fakeglx.c     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMultisampleTests.cpp 79 enum RenderType
248 const RenderType renderType);
261 const RenderType renderType);
285 const RenderType m_renderType;
    [all...]
  /external/mesa3d/include/GL/
glx.h 273 int renderType, GLXContext shareList,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/GL/
glx.h 286 int renderType, GLXContext shareList,

Completed in 360 milliseconds

1 2