C++ Gdk::Pixmap在create()上给了我一个分段错误

C++ Gdk::Pixmap在create()上给了我一个分段错误,c++,gdk,C++,Gdk,我正在Gtk::DrawingArea上进行像素绘制。有时会发生暴露事件,我需要重新绘制所有内容。但是再次绘制每个像素的速度很慢,所以我尝试创建一个Sdk::Pixmap并绘制到它,然后在需要时将它绘制到屏幕上 我正在尝试创建一个Sdk::Pixmap并使用draw_point绘制它。这是我的密码: 在水电站: Glib::RefPtr<Gdk::Pixmap>pixmap; Glib::RefPtr<Gdk::GC>pixGC; 我的代码怎么了 另外,我还没有编写代码

我正在Gtk::DrawingArea上进行像素绘制。有时会发生暴露事件,我需要重新绘制所有内容。但是再次绘制每个像素的速度很慢,所以我尝试创建一个Sdk::Pixmap并绘制到它,然后在需要时将它绘制到屏幕上

我正在尝试创建一个Sdk::Pixmap并使用draw_point绘制它。这是我的密码: 在水电站:

Glib::RefPtr<Gdk::Pixmap>pixmap;
Glib::RefPtr<Gdk::GC>pixGC;
我的代码怎么了

另外,我还没有编写代码来绘制实际的绘图区域

编辑:Ok我修复了第一个seg故障:

pixmap = Gdk::Pixmap::create(get_window(), width, height, 3);
pixGC = Gdk::GC::create(get_window());
感谢此链接:

但现在我明白了:

The program 'programName' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadDrawable (invalid Pixmap or Window parameter)'.
(Details: serial 69525 error_code 9 request_code 64 minor_code 0)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error() function.)
堆栈跟踪:

Breakpoint 3, 0x00007ffff72830e0 in _XError ()
   from /usr/lib/x86_64-linux-gnu/libX11.so.6
(gdb) bt
#0  0x00007ffff72830e0 in _XError () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#1  0x00007ffff72801d1 in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#2  0x00007ffff7280215 in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#3  0x00007ffff7281050 in _XReply () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#4  0x00007ffff727c99d in XSync () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#5  0x00007ffff727ca2b in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#6  0x00007ffff725f954 in XCreatePixmap ()
   from /usr/lib/x86_64-linux-gnu/libX11.so.6
#7  0x00007ffff3e2f48d in ?? ()
   from /usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0
#8  0x00007ffff6de048d in Gdk::Pixmap::Pixmap (this=0x7fffd4000930, 
    drawable=..., width=256, height=256, depth=3, __in_chrg=<optimized out>, 
    __vtt_parm=<optimized out>) at pixmap.cc:55
#9  0x00007ffff6de0d71 in Gdk::Pixmap::create (drawable=..., width=256, 
    height=256, depth=<optimized out>) at pixmap.cc:317
#10 0x00000000004408e1 in Viewer::start (this=0x7fffffffea00, width=256, 
    height=256) at viewer.cpp:23
#11 0x000000000042e380 in AppWindow::rayTraceDrawer (this=0x7fffffffe8e0)
    at appwindow.cpp:25
#12 0x0000000000432cd8 in std::_Mem_fn<void (AppWindow::*)()>::operator() (
    this=0x767b58, __object=0x7fffffffe8e0)
    at /usr/include/c++/4.6/functional:551
#13 0x0000000000432b8b in std::_Bind_result<void, std::_Mem_fn<void (AppWindow::---Type <return> to continue, or q <return> to quit---
*)()> (AppWindow*)>::__call<void, , 0>(std::tuple<>&&, std::_Index_tuple<0>, std::_Bind_result<void, std::_Mem_fn<void (AppWindow::*)()> (AppWindow*)>::__enable_if_void<void>::type) (this=0x767b58, __args=...)
    at /usr/include/c++/4.6/functional:1287
#14 0x0000000000432ae3 in std::_Bind_result<void, std::_Mem_fn<void (AppWindow::*)()> (AppWindow*)>::operator()<>() (this=0x767b58)
    at /usr/include/c++/4.6/functional:1378
#15 0x0000000000432972 in std::thread::_Impl<std::_Bind_result<void, std::_Mem_fn<void (AppWindow::*)()> (AppWindow*)> >::_M_run() (this=0x767b40)
    at /usr/include/c++/4.6/thread:117
#16 0x00007ffff6031c78 in ?? () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#17 0x00007ffff589de9a in start_thread ()
   from /lib/x86_64-linux-gnu/libpthread.so.0
#18 0x00007ffff55ca3fd in clone () from /lib/x86_64-linux-gnu/libc.so.6
#19 0x0000000000000000 in ?? ()
这是因为我正在后台线程上创建pixmap吗

编辑2:

不,移动到UI线程,仍然崩溃

编辑3:


看来我已经修好了。问题是访问get_窗口太早。将代码移动到on_realize,它停止崩溃。不确定pixmap是否有效,但是…在我弄清楚如何从pixmap绘制到drawingarea后,将发布。

经过这么多小时后的解决方案是:

在了解您的绘图区域时:

pixmap = Gdk::Pixmap::create(get_window(), width, height, get_window()->get_depth());
pixGC = Gdk::GC::create(get_window());
get_window()->draw_drawable(get_style()->get_fg_gc(get_state()),
                    pixmap,
                    0,0,0,0);
绘制到pixmap:

pixGC->set_foreground(color);
pixmap->draw_point(pixGC,x,y);
然后绘制到绘图区域:

pixmap = Gdk::Pixmap::create(get_window(), width, height, get_window()->get_depth());
pixGC = Gdk::GC::create(get_window());
get_window()->draw_drawable(get_style()->get_fg_gc(get_state()),
                    pixmap,
                    0,0,0,0);