Blob Blame History Raw
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>How do I render pixels (image data) to the
screen?</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="GTK+ FAQ"
HREF="book1.html"><LINK
REL="UP"
TITLE="Development with GTK+: general questions"
HREF="c466.html"><LINK
REL="PREVIOUS"
TITLE="Shouldn't the text argument in the gtk_clist_*
functions be declared const?"
HREF="x669.html"><LINK
REL="NEXT"
TITLE="How do I create a pixmap without having my window being
realized/shown?"
HREF="x681.html"></HEAD
><BODY
CLASS="SECT1"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>GTK+ FAQ</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="x669.html"
ACCESSKEY="P"
>&#60;&#60;&#60; Previous</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
>Development with GTK+: general questions</TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="x681.html"
ACCESSKEY="N"
>Next &#62;&#62;&#62;</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="AEN675"
>How do I render pixels (image data) to the
screen?</A
></H1
><P
>There are several ways to approach this. The simplest
way is to use GdkRGB, see gdk/gdkrgb.h. You create an RGB
buffer, render to your RGB buffer, then use GdkRGB routines to
copy your RGB buffer to a drawing area or custom widget. The
book "GTK+/Gnome Application Development" gives some details;
GdkRGB is also documented in the GTK+ reference
documentation.</P
><P
>If you're writing a game or other graphics-intensive
application, you might consider a more elaborate
solution. OpenGL is the graphics standard that will let you
access hardware accelaration in future versions of XFree86; so
for maximum speed, you probably want to use OpenGL. A
GtkGLArea widget is available for using OpenGL with GTK+ (but
GtkGLArea does not come with GTK+ itself). There are also
several open source game libraries, such as ClanLib and Loki's
Simple DirectMedia Layer library (SDL).</P
><P
>You do NOT want to use
<TT
CLASS="LITERAL"
>gdk_draw_point()</TT
>, that will be extremely
slow.</P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="x669.html"
ACCESSKEY="P"
>&#60;&#60;&#60; Previous</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="book1.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="x681.html"
ACCESSKEY="N"
>Next &#62;&#62;&#62;</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Shouldn't the text argument in the gtk_clist_*
functions be declared const?</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="c466.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>How do I create a pixmap without having my window being
realized/shown?</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>