HomeSort by: relevance | last modified time | path
    Searched refs:sinfo (Results 1 - 15 of 15) sorted by relevancy

  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/examples/
dmxinfo.c 76 DMXScreenAttributes sinfo; local
80 if (!DMXGetScreenAttributes(display, winfo[i].screen, &sinfo)) {
84 if (!(backend = XOpenDisplay(sinfo.displayName))) {
85 printf("Cannot open backend display %s\n", sinfo.displayName);
92 sinfo.displayName,
149 DMXScreenAttributes sinfo; local
192 if (!DMXGetScreenAttributes(display, i, &sinfo)) {
197 i, sinfo.displayName,
198 sinfo.screenWindowWidth, sinfo.screenWindowHeight
    [all...]
  /xsrc/external/mit/libXvMC/dist/src/
XvMC.c 121 xvmcSurfaceInfo sinfo; local
123 _XRead(dpy, (char *) &sinfo, sizeof(xvmcSurfaceInfo));
124 surface_info[i].surface_type_id = (int) sinfo.surface_type_id;
125 surface_info[i].chroma_format = sinfo.chroma_format;
126 surface_info[i].max_width = sinfo.max_width;
127 surface_info[i].max_height = sinfo.max_height;
129 sinfo.subpicture_max_width;
131 sinfo.subpicture_max_height;
132 surface_info[i].mc_type = (int) sinfo.mc_type;
133 surface_info[i].flags = (int) sinfo.flags
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
zink_pipeline.c 304 VkSpecializationInfo sinfo = {0}; local
307 stage.pSpecializationInfo = &sinfo;
308 sinfo.mapEntryCount = 3;
309 sinfo.pMapEntries = &me[0];
310 sinfo.dataSize = sizeof(state->local_size);
311 sinfo.pData = &state->local_size[0];
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
sp_state_derived.c 65 struct sp_setup_info *sinfo = &softpipe->setup_info; local
67 if (sinfo->valid == 0) {
160 sinfo->attrib[i].interp = interp;
162 sinfo->attrib[i].src_index = i + 1;
sp_setup.c 545 const struct sp_setup_info *sinfo = &softpipe->setup_info; local
549 assert(sinfo->valid);
566 const uint vertSlot = sinfo->attrib[fragSlot].src_index;
569 switch (sinfo->attrib[fragSlot].interp) {
886 const struct sp_setup_info *sinfo = &softpipe->setup_info; local
891 assert(sinfo->valid);
923 const uint vertSlot = sinfo->attrib[fragSlot].src_index;
926 switch (sinfo->attrib[fragSlot].interp) {
1155 const struct sp_setup_info *sinfo = &softpipe->setup_info; local
1164 assert(sinfo->valid)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
sp_state_derived.c 65 struct sp_setup_info *sinfo = &softpipe->setup_info; local
67 if (sinfo->valid == 0) {
160 sinfo->attrib[i].interp = interp;
162 sinfo->attrib[i].src_index = i + 1;
sp_setup.c 590 const struct sp_setup_info *sinfo = &softpipe->setup_info; local
594 assert(sinfo->valid);
611 const uint vertSlot = sinfo->attrib[fragSlot].src_index;
614 switch (sinfo->attrib[fragSlot].interp) {
960 const struct sp_setup_info *sinfo = &softpipe->setup_info; local
965 assert(sinfo->valid);
997 const uint vertSlot = sinfo->attrib[fragSlot].src_index;
1000 switch (sinfo->attrib[fragSlot].interp) {
1232 const struct sp_setup_info *sinfo = &softpipe->setup_info; local
1241 assert(sinfo->valid)
    [all...]
  /xsrc/external/mit/libXext/dist/src/
XMultibuf.c 560 XmbufBufferInfo *minfo, *sinfo; local
575 sinfo = ((nstereo > 0) ? read_buffer_info (dpy, nstereo) : NULL);
578 if ((nmono > 0 && !minfo) || (nstereo > 0 && !sinfo)) {
580 if (sinfo) Xfree (sinfo);
589 *stereo_info_return = sinfo;
  /xsrc/external/mit/xdpyinfo/dist/
xdpyinfo.c 1249 DMXScreenAttributes sinfo; local
1251 if (DMXGetScreenAttributes(dpy, i, &sinfo)) {
1253 i, sinfo.displayName,
1254 sinfo.screenWindowWidth, sinfo.screenWindowHeight,
1255 sinfo.screenWindowXoffset, sinfo.screenWindowYoffset,
1256 sinfo.logicalScreen,
1257 sinfo.rootWindowXorigin, sinfo.rootWindowYorigin)
    [all...]
  /xsrc/external/mit/twm/dist/src/
parse.c 1152 SqueezeInfo *sinfo; local
1154 sinfo = (SqueezeInfo *) malloc(sizeof(SqueezeInfo));
1156 if (!sinfo) {
1161 sinfo->justify = justify;
1162 sinfo->num = num;
1163 sinfo->denom = denom;
1164 AddToList(list, name, (char *) sinfo);
  /xsrc/external/mit/ctwm/dist/
parse_be.c 1922 SqueezeInfo *sinfo; local
1923 sinfo = malloc(sizeof(SqueezeInfo));
1925 if(!sinfo) {
1932 sinfo->justify = justify;
1933 sinfo->num = num;
1934 sinfo->denom = denom;
1935 AddToList(slist, name, sinfo);
  /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/
anv_pipeline.c 1444 const VkPipelineShaderStageCreateInfo *sinfo = &info->pStages[i]; local
1445 gl_shader_stage stage = vk_to_mesa_shader_stage(sinfo->stage);
1450 stages[stage].module = vk_shader_module_from_handle(sinfo->module);
1451 stages[stage].entrypoint = sinfo->pName;
1452 stages[stage].spec_info = sinfo->pSpecializationInfo;
1460 anv_subgroup_size_type(stage, sinfo->flags, NULL);
2666 const VkPipelineShaderStageCreateInfo *sinfo = &info->pStages[i]; local
2667 if (sinfo->module == VK_NULL_HANDLE)
2673 .stage = vk_to_mesa_shader_stage(sinfo->stage),
2674 .module = vk_shader_module_from_handle(sinfo->module)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
anv_pipeline.c 977 const VkPipelineShaderStageCreateInfo *sinfo = &info->pStages[i]; local
978 gl_shader_stage stage = vk_to_mesa_shader_stage(sinfo->stage);
980 pipeline->active_stages |= sinfo->stage;
985 stages[stage].module = anv_shader_module_from_handle(sinfo->module);
986 stages[stage].entrypoint = sinfo->pName;
987 stages[stage].spec_info = sinfo->pSpecializationInfo;
  /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/
v3dv_pipeline.c 2396 const VkPipelineShaderStageCreateInfo *sinfo = &pCreateInfo->pStages[i]; local
2397 gl_shader_stage stage = vk_to_mesa_shader_stage(sinfo->stage);
2417 p_stage->entrypoint = sinfo->pName;
2418 p_stage->module = vk_shader_module_from_handle(sinfo->module);
2419 p_stage->spec_info = sinfo->pSpecializationInfo;
2427 pipeline->active_stages |= sinfo->stage;
3153 const VkPipelineShaderStageCreateInfo *sinfo = &info->stage; local
3154 gl_shader_stage stage = vk_to_mesa_shader_stage(sinfo->stage);
3165 p_stage->entrypoint = sinfo->pName;
3166 p_stage->module = vk_shader_module_from_handle(sinfo->module)
    [all...]
  /xsrc/external/mit/xkbcomp/dist/
geometry.c 3594 ShapeInfo *sinfo; local
3595 sinfo = FindShape(info, ki->shape, "key", keyText(ki));
3596 if (!sinfo)
3598 key->shape_ndx = sinfo->index;

Completed in 27 milliseconds