Changeset 42499 in vbox for trunk/src/VBox/Additions/common/crOpenGL/feedback
- Timestamp:
- Aug 1, 2012 10:26:43 AM (12 years ago)
- Location:
- trunk/src/VBox/Additions/common/crOpenGL/feedback
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/feedback/feedback_context.c
r28800 r42499 24 24 25 25 GLint FEEDBACKSPU_APIENTRY 26 feedbackspu_ CreateContext(const char *dpyName, GLint visual, GLint shareCtx )26 feedbackspu_VBoxCreateContext( GLint con, const char *dpyName, GLint visual, GLint shareCtx ) 27 27 { 28 28 GLint ctx, slot; … … 32 32 #endif 33 33 34 ctx = feedback_spu.child. CreateContext(dpyName, visual, shareCtx);34 ctx = feedback_spu.child.VBoxCreateContext(con, dpyName, visual, shareCtx); 35 35 36 36 /* find an empty context slot */ … … 53 53 54 54 return ctx; 55 } 56 57 GLint FEEDBACKSPU_APIENTRY 58 feedbackspu_CreateContext( const char *dpyName, GLint visual, GLint shareCtx ) 59 { 60 return feedbackspu_VBoxCreateContext( 0, dpyName, visual, shareCtx ); 55 61 } 56 62 -
trunk/src/VBox/Additions/common/crOpenGL/feedback/feedback_state.py
r19099 r42499 16 16 #include "feedbackspu_proto.h" 17 17 """ 18 custom = ["CreateContext", " MakeCurrent", "DestroyContext"]18 custom = ["CreateContext", "VBoxCreateContext", "MakeCurrent", "DestroyContext"] 19 19 20 20 keys = apiutil.GetDispatchedFunctions(sys.argv[1]+"/APIspec.txt") -
trunk/src/VBox/Additions/common/crOpenGL/feedback/feedback_state_special
r40431 r42499 64 64 VBoxAttachThread 65 65 VBoxDetachThread 66 VBoxCreateContext
Note:
See TracChangeset
for help on using the changeset viewer.