Changeset 30457 in vbox
- Timestamp:
- Jun 28, 2010 10:03:12 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63134
- Location:
- trunk/src/VBox/Additions/common/crOpenGL
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/Linux_i386_exports.py
r18142 r30457 31 31 func_name = keys[index] 32 32 if apiutil.Category(func_name) == "Chromium": 33 continue 34 if apiutil.Category(func_name) == "VBox": 33 35 continue 34 36 -
trunk/src/VBox/Additions/common/crOpenGL/Linux_i386_exports_dri.py
r18882 r30457 31 31 func_name = keys[index] 32 32 if apiutil.Category(func_name) == "Chromium": 33 continue 34 if apiutil.Category(func_name) == "VBox": 33 35 continue 34 36 -
trunk/src/VBox/Additions/common/crOpenGL/SunOS_i386_exports.py
r28800 r30457 37 37 func_name = keys[index] 38 38 if apiutil.Category(func_name) == "Chromium": 39 continue 40 if apiutil.Category(func_name) == "VBox": 39 41 continue 40 42 -
trunk/src/VBox/Additions/common/crOpenGL/SunOS_i386_exports_dri.py
r28800 r30457 37 37 func_name = keys[index] 38 38 if apiutil.Category(func_name) == "Chromium": 39 continue 40 if apiutil.Category(func_name) == "VBox": 39 41 continue 40 42 -
trunk/src/VBox/Additions/common/crOpenGL/cr_gl.py
r17472 r30457 53 53 if "Chromium" == apiutil.Category(func_name): 54 54 continue 55 if "VBox" == apiutil.Category(func_name): 56 continue 55 57 if func_name == "BoundsInfoCR": 56 58 continue -
trunk/src/VBox/Additions/common/crOpenGL/getprocaddress.py
r23399 r30457 36 36 for func_name in keys: 37 37 if "Chromium" == apiutil.Category(func_name): 38 continue 39 if "VBox" == apiutil.Category(func_name): 38 40 continue 39 41 if func_name == "BoundsInfoCR": -
trunk/src/VBox/Additions/common/crOpenGL/windows_exports.py
r15532 r30457 30 30 func_name = keys[index] 31 31 if apiutil.Category(func_name) == "Chromium": 32 continue 33 if apiutil.Category(func_name) == "VBox": 32 34 continue 33 35 -
trunk/src/VBox/Additions/common/crOpenGL/windows_getprocaddress.py
r23399 r30457 41 41 for func_name in keys: 42 42 if "Chromium" == apiutil.Category(func_name): 43 continue 44 if "VBox" == apiutil.Category(func_name): 43 45 continue 44 46 if func_name == "BoundsInfoCR": -
trunk/src/VBox/Additions/common/crOpenGL/windows_i386_exports.py
r18142 r30457 30 30 func_name = keys[index] 31 31 if apiutil.Category(func_name) == "Chromium": 32 continue 33 if apiutil.Category(func_name) == "VBox": 32 34 continue 33 35
Note:
See TracChangeset
for help on using the changeset viewer.