Skip to content

Commit df96404

Browse files
committed
cocoadisplay: Add missing EXPCL_PANDA_COCOADISPLAY
1 parent daa5773 commit df96404

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

panda/src/cocoadisplay/cocoaGraphicsBuffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* This is a light wrapper around GLGraphicsBuffer (ie. FBOs) to interface
2222
* with Cocoa contexts, so that it can be used without a host window.
2323
*/
24-
class CocoaGraphicsBuffer : public GLGraphicsBuffer {
24+
class EXPCL_PANDA_COCOADISPLAY CocoaGraphicsBuffer : public GLGraphicsBuffer {
2525
public:
2626
CocoaGraphicsBuffer(GraphicsEngine *engine, GraphicsPipe *pipe,
2727
const std::string &name,

panda/src/cocoadisplay/cocoaGraphicsPipe.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class FrameBufferProperties;
3333
* This graphics pipe represents the interface for creating OpenGL graphics
3434
* windows on a Cocoa-based (e.g. Mac OS X) client.
3535
*/
36-
class CocoaGraphicsPipe : public GraphicsPipe {
36+
class EXPCL_PANDA_COCOADISPLAY CocoaGraphicsPipe : public GraphicsPipe {
3737
public:
3838
CocoaGraphicsPipe(CGDirectDisplayID display = CGMainDisplayID());
3939
virtual ~CocoaGraphicsPipe();

panda/src/cocoadisplay/cocoaGraphicsStateGuardian.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* A tiny specialization on GLGraphicsStateGuardian to add some Cocoa-specific
2727
* information.
2828
*/
29-
class CocoaGraphicsStateGuardian : public GLGraphicsStateGuardian {
29+
class EXPCL_PANDA_COCOADISPLAY CocoaGraphicsStateGuardian : public GLGraphicsStateGuardian {
3030
public:
3131
INLINE const FrameBufferProperties &get_fb_properties() const;
3232
void get_properties(FrameBufferProperties &properties,

panda/src/cocoadisplay/cocoaGraphicsWindow.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* An interface to the Cocoa system for managing OpenGL windows under Mac OS
3030
* X.
3131
*/
32-
class CocoaGraphicsWindow : public GraphicsWindow {
32+
class EXPCL_PANDA_COCOADISPLAY CocoaGraphicsWindow : public GraphicsWindow {
3333
public:
3434
CocoaGraphicsWindow(GraphicsEngine *engine, GraphicsPipe *pipe,
3535
const std::string &name,

0 commit comments

Comments
 (0)