Changeset 229194 in webkit
- Timestamp:
- Mar 2, 2018, 4:07:51 PM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r229191 r229194 1 2018-03-02 Dean Jackson <dino@apple.com> 2 3 Remove NP_GLContext since it is unsupported 4 https://bugs.webkit.org/show_bug.cgi?id=183305 5 <rdar://problem/36875555> 6 7 Reviewed by Simon Fraser. 8 9 * plugins/npapi.h: Remove NP_GLContext and mention that 10 it is not supported. 11 1 12 2018-03-02 Chris Dumez <cdumez@apple.com> 2 13 -
trunk/Source/WebCore/plugins/npapi.h
r187886 r229194 285 285 #endif 286 286 NPDrawingModelCoreGraphics = 1, 287 NPDrawingModelOpenGL = 2, 287 NPDrawingModelOpenGL = 2, // Note: This is not supported. 288 288 NPDrawingModelCoreAnimation = 3 289 289 } NPDrawingModel; … … 583 583 #endif 584 584 } NP_CGContext; 585 586 /*587 * NP_GLContext is the type of the NPWindow's 'window' when the plugin specifies NPDrawingModelOpenGL as its588 * drawing model.589 */590 591 typedef struct NP_GLContext592 {593 CGLContextObj context;594 #ifdef NP_NO_CARBON595 NPNSWindow *window;596 #else597 void *window; /* Can be either an NSWindow or a WindowRef depending on the event model */598 #endif599 } NP_GLContext;600 585 601 586 typedef enum {
Note:
See TracChangeset
for help on using the changeset viewer.