Searched refs:visual (Results 1 - 25 of 127) sorted by relevance

123456

/macosx-10.10/tcl-105/tk/tk/xlib/
H A Dxutil.c57 * Returns information about the specified visual.
76 info->visual = DefaultVisual(display, 0);
77 info->visualid = info->visual->visualid;
79 info->depth = info->visual->bits_per_rgb;
80 info->class = info->visual->class;
81 info->colormap_size = info->visual->map_entries;
82 info->bits_per_rgb = info->visual->bits_per_rgb;
83 info->red_mask = info->visual->red_mask;
84 info->green_mask = info->visual->green_mask;
85 info->blue_mask = info->visual
[all...]
/macosx-10.10/tcl-105/tk84/tk/xlib/
H A Dxutil.c63 * Returns information about the specified visual.
82 info->visual = DefaultVisual(display, 0);
83 info->visualid = info->visual->visualid;
85 info->depth = info->visual->bits_per_rgb;
86 info->class = info->visual->class;
87 info->colormap_size = info->visual->map_entries;
88 info->bits_per_rgb = info->visual->bits_per_rgb;
89 info->red_mask = info->visual->red_mask;
90 info->green_mask = info->visual->green_mask;
91 info->blue_mask = info->visual
[all...]
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkVisual.c20 * The table below maps from symbolic names for visual classes to the
50 Visual *visual; /* Visual for which colormap was allocated. */ member in struct:TkColormap
58 * default for a particular visual, so it can
70 * Given a string identifying a particular kind of visual, this procedure
71 * returns a visual and depth that matches the specification.
74 * The return value is normally a pointer to a visual. If an error
75 * occurred in looking up the visual, NULL is returned and an error
76 * message is left in the interp's result. The depth of the visual is
79 * with the visual in tkwin, and it returns that colormap in *colormapPtr
91 Tk_Window tkwin, /* Window in which visual wil
103 Visual *visual; local
[all...]
H A Dtk3d.h32 Visual *visual; /* Visual for all windows and pixmaps using member in struct:TkBorder
H A DtkColor.h47 Visual *visual; /* Visual associated with colormap. */ member in struct:TkColor
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkVisual.c21 * The table below maps from symbolic names for visual classes
51 Visual *visual; /* Visual for which colormap was member in struct:TkColormap
61 * visual, so it can be shared. */
72 * Given a string identifying a particular kind of visual, this
73 * procedure returns a visual and depth that matches the specification.
76 * The return value is normally a pointer to a visual. If an
77 * error occurred in looking up the visual, NULL is returned and
79 * visual is returned to *depthPtr under normal returns. If
81 * suitable colormap for use with the visual in tkwin, and it
94 Tk_Window tkwin; /* Window in which visual wil
107 Visual *visual; local
[all...]
H A Dtk3d.h34 Visual *visual; /* Visual for all windows and pixmaps using member in struct:TkBorder
H A DtkColor.h48 Visual *visual; /* Visual associated with colormap. */ member in struct:TkColor
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DPlatformScreenGtk.cpp66 GdkVisual* visual = getVisual(widget); local
67 if (!visual)
69 return gdk_visual_get_depth(visual);
74 GdkVisual* visual = getVisual(widget); local
75 if (!visual)
78 return gdk_visual_get_bits_per_rgb(visual);
H A DWidgetBackingStoreGtkX11.cpp42 GdkVisual* visual = gtk_widget_get_visual(widget); local
43 GdkScreen* screen = gdk_visual_get_screen(visual);
46 scaledSize.width(), scaledSize.height(), gdk_visual_get_depth(visual));
50 GDK_VISUAL_XVISUAL(visual), scaledSize.width(), scaledSize.height()));
H A DDragIcon.cpp72 GdkVisual* visual = gdk_screen_get_rgba_visual(screen); local
73 if (!visual)
74 visual = gdk_screen_get_system_visual(screen);
75 gtk_widget_set_visual(m_window, visual);
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/blt/
H A Dbarchart5.rb14 visual = Tk.root.winfo_screenvisual
15 if visual != 'staticgray' && visual != 'grayscale'
71 if visual == 'staticgray' || visual == 'grayscale'
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Drdrle.c67 rle_kind visual; /* actual type of input file */ member in struct:_rle_source_struct
125 source->visual = GRAYSCALE;
128 source->visual = MAPPEDGRAY;
132 source->visual = PSEUDOCOLOR;
136 source->visual = TRUECOLOR;
140 source->visual = DIRECTCOLOR;
145 if (source->visual == GRAYSCALE || source->visual == MAPPEDGRAY) {
157 if (source->visual != GRAYSCALE) {
270 switch (source->visual) {
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/window/
H A Dwindow.c236 Visual *visual; local
309 visual = Tk_Visual(tkwin);
319 ncolors = visual->map_entries;
322 if (visual->class == DirectColor || visual->class == TrueColor) {
324 cdata.red_mask = visual->red_mask;
325 cdata.green_mask = visual->green_mask;
326 cdata.blue_mask = visual->blue_mask;
351 cdata.color = !(visual->class == StaticGray || visual
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/ucdata/
H A Dbidiapi.txt11 support for both visual and logical navigation.
/macosx-10.10/tcl-105/tk/tk/win/
H A DtkWinPort.h124 #define XVisualIDFromVisual(visual) (visual->visualid)
/macosx-10.10/tcl-105/tk84/tk/win/
H A DtkWinPort.h104 #define XVisualIDFromVisual(visual) (visual->visualid)
/macosx-10.10/tcl-105/tk/tk/tests/
H A DcanvPsImg.tcl2 # for images in canvases. It is part of the Tk visual test suite,
3 # which is invoked via the "visual" script.
9 global BitmapImage PhotoImage visual level
11 frame .t.f -visual $visual -colormap new
53 set visual [lindex [winfo visualsavailable .] 0]
56 # visual of the same type...
58 radiobutton .t.$v -text $v -variable visual -value $v \
/macosx-10.10/tcl-105/tk/tk/unix/
H A DtkUnixColor.c77 Visual *visual;
90 visual = tkColPtr->visual;
91 if ((visual->class != StaticGray) && (visual->class != StaticColor)
285 Tcl_Panic("FindClosestColor couldn't lookup visual");
76 Visual *visual; local
/macosx-10.10/tcl-105/tk84/tk/tests/
H A DcanvPsImg.tcl2 # for images in canvases. It is part of the Tk visual test suite,
3 # which is invoked via the "visual" script.
9 global BitmapImage PhotoImage visual level
11 frame .t.f -visual $visual -colormap new
53 set visual [lindex [winfo visualsavailable .] 0]
56 # visual of the same type...
58 radiobutton .t.$v -text $v -variable visual -value $v \
/macosx-10.10/tcl-105/tk84/tk/unix/
H A DtkUnixColor.c77 Visual *visual;
91 visual = tkColPtr->visual;
92 if ((visual->class != StaticGray) && (visual->class != StaticColor)
288 panic("FindClosestColor couldn't lookup visual");
76 Visual *visual; local
/macosx-10.10/tcl-105/tk/tk/macosx/
H A DtkMacOSXPort.h137 #define XVisualIDFromVisual(visual) (visual->visualid)
/macosx-10.10/tcl-105/tk84/tk/macosx/
H A DtkMacOSXPort.h134 #define XVisualIDFromVisual(visual) (visual->visualid)
/macosx-10.10/WebCore-7600.1.25/platform/graphics/surfaces/glx/
H A DX11Helper.cpp150 if (!visualInfo.visual) {
192 if (!visInfo.visual) {
201 Colormap cmap = XCreateColormap(display, xWindow, visInfo.visual, AllocNone);
209 uint32_t tempHandleId = XCreateWindow(display, xWindow, 0, 0, size.width(), size.height(), 0, visInfo.depth, InputOutput, visInfo.visual, CWBackPixel | CWBorderPixel | CWColormap, &attribute);
238 // EGL has suggested a visual id, so get the rest of the visual info for that id.
275 // EGL has suggested a visual id, so get the rest of the visual info for that id.
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/x11/
H A DNetscapePluginX11.cpp163 callbackStruct->visual = GDK_VISUAL_XVISUAL(gdk_window_get_visual(window));
165 callbackStruct->colormap = XCreateColormap(display, GDK_ROOT_WINDOW(), callbackStruct->visual, AllocNone);
197 Visual* visual = visualInfo[0].visual; local
198 ASSERT(visual);
201 callbackStruct->visual = visual;
202 callbackStruct->colormap = XCreateColormap(display, rootWindowID(), visual, AllocNone);
348 static_cast<NPSetWindowCallbackStruct*>(m_npWindow.ws_info)->visual,

Completed in 295 milliseconds

123456