|
@@ -166,6 +166,19 @@ pipe_constructor() {
|
|
|
return new glxGraphicsPipe;
|
|
return new glxGraphicsPipe;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+// Function: glxGraphicsPipe::get_preferred_window_thread
|
|
|
|
|
+// Access: Public, Virtual
|
|
|
|
|
+// Description: Returns an indication of the thread in which this
|
|
|
|
|
+// GraphicsPipe requires its window processing to be
|
|
|
|
|
+// performed: typically either the app thread (e.g. X)
|
|
|
|
|
+// or the draw thread (Windows).
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+GraphicsPipe::PreferredWindowThread
|
|
|
|
|
+glxGraphicsPipe::get_preferred_window_thread() const {
|
|
|
|
|
+ return PWT_app;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////
|
|
|
// Function: glxGraphicsPipe::make_output
|
|
// Function: glxGraphicsPipe::make_output
|
|
|
// Access: Protected, Virtual
|
|
// Access: Protected, Virtual
|