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

  /xsrc/external/mit/freetype/dist/src/pfr/
pfrload.c 141 FT_UInt num_items, item_type, item_size; local
151 item_type = PFR_NEXT_BYTE( p );
162 if ( extra->type == item_type )
  /xsrc/external/mit/MesaLib.old/dist/src/imgui/
imgui_demo.cpp 1439 static int item_type = 1; local
1442 ImGui::RadioButton("Text", &item_type, 0);
1443 ImGui::RadioButton("Button", &item_type, 1);
1444 ImGui::RadioButton("Checkbox", &item_type, 2);
1445 ImGui::RadioButton("SliderFloat", &item_type, 3);
1446 ImGui::RadioButton("ColorEdit4", &item_type, 4);
1447 ImGui::RadioButton("ListBox", &item_type, 5);
1450 if (item_type == 0) { ImGui::Text("ITEM: Text"); } // Testing text items with no identifier/interaction
1451 if (item_type == 1) { ret = ImGui::Button("ITEM: Button"); } // Testing button
1452 if (item_type == 2) { ret = ImGui::Checkbox("ITEM: Checkbox", &b); } // Testing check (…)
    [all...]

Completed in 11 milliseconds