HomeSort by relevance Sort by last modified time
    Searched defs:renderType (Results 1 - 20 of 20) sorted by null

  /external/mesa3d/src/glx/
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;
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...]
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...]
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...]
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...]
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);
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...]
  /frameworks/base/libs/hwui/
Properties.cpp 200 auto renderType = getRenderPipelineType();
201 return RenderPipelineType::SkiaGL == renderType
202 || RenderPipelineType::SkiaVulkan == renderType;
BakedOpDispatcher.cpp 260 const ClipBase* renderClip, TextRenderType renderType) {
300 bool forceFinish = (renderType == TextRenderType::Flush);
327 TextRenderType renderType = (i + 1 == opList.count)
329 renderText(renderer, op, state, clip, renderType);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureBufferTests.cpp 651 const RenderBits renderType = renderTypeCombinations[renderTypeNdx];
652 TestCaseGroup* const renderTypeGroup = new TestCaseGroup(context, toTestName(renderType).c_str(), toTestName(renderType).c_str());
661 renderTypeGroup->addChild(new TextureBufferCase(context.getTestContext(), context.getRenderContext(), GL_RGBA8, size, 0, 0, RENDERBITS_NONE, MODIFYBITS_NONE, renderType, name.c_str(), name.c_str()));
670 renderTypeGroup->addChild(new TextureBufferCase(context.getTestContext(), context.getRenderContext(), GL_RGBA8, bufferSize, 0, size, RENDERBITS_NONE, MODIFYBITS_NONE, renderType, name.c_str(), name.c_str()));
680 renderTypeGroup->addChild(new TextureBufferCase(context.getTestContext(), context.getRenderContext(), GL_RGBA8, bufferSize, offset, size, RENDERBITS_NONE, MODIFYBITS_NONE, renderType, name.c_str(), name.c_str()));
740 const RenderBits renderType = renderTypeCombinations[renderTypeNdx];
742 const string name (toTestName(renderType));
744 modifyTypeGroup->addChild(new TextureBufferCase(context.getTestContext(), context.getRenderContext(), GL_RGBA8, size, 0, 0, RENDERBITS_NONE, modifyType, renderType, name.c_str(), name.c_str()));
756 const RenderBits renderType = renderTypeCombinations[renderTypeNdx]
    [all...]
  /frameworks/base/libs/hwui/renderthread/
RenderThread.cpp 212 auto renderType = Properties::getRenderPipelineType();
213 switch (renderType) {
235 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t) renderType);
248 auto renderType = Properties::getRenderPipelineType();
249 switch (renderType) {
261 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t) renderType);
487 auto renderType = Properties::getRenderPipelineType();
488 switch (renderType) {
496 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t) renderType);
CanvasContext.cpp 69 auto renderType = Properties::getRenderPipelineType();
71 switch (renderType) {
82 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t) renderType);
89 auto renderType = Properties::getRenderPipelineType();
90 switch (renderType) {
99 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t) renderType);
106 auto renderType = Properties::getRenderPipelineType();
107 switch (renderType) {
118 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t) renderType);
124 auto renderType = Properties::getRenderPipelineType()
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_api.c     [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-support/1.5/
gmaven-runtime-support-1.5.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.5/
kotlin-annotation-processing-1.0.5.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-reflect/1.0.6/
kotlin-reflect-1.0.6.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-reflect/1.1.3/
kotlin-reflect-1.1.3.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-reflect/1.1.3-2/
kotlin-reflect-1.1.3-2.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.5/
kotlin-reflect.jar 

Completed in 4063 milliseconds