How to use the entrypoints.GenerateEntrypoints function in entrypoints

To help you get started, we’ve selected a few entrypoints examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github rpavlik / chromium / opengl_stub / OSF1_exports.py View on Github external
# Copyright (c) 2001, Stanford University
# All rights reserved.
#
# See the file LICENSE.txt for information on redistributing this software.

import entrypoints

hacks = []

entrypoints.GenerateEntrypoints(hacks)
github svn2github / virtualbox / trunk / src / VBox / Additions / common / crOpenGL / IRIX64_exports.py View on Github external
# Copyright (c) 2001, Stanford University
# All rights reserved.
#
# See the file LICENSE.txt for information on redistributing this software.

import entrypoints

hacks = ["TexImage3D", "EdgeFlagPointer" ]

entrypoints.GenerateEntrypoints(hacks)
github rpavlik / chromium / opengl_stub / Linux_exports.py View on Github external
# Copyright (c) 2001, Stanford University
# All rights reserved.
#
# See the file LICENSE.txt for information on redistributing this software.

import entrypoints

hacks = []

entrypoints.GenerateEntrypoints(hacks)
github rpavlik / chromium / opengl_stub / Darwin_exports.py View on Github external
# Copyright (c) 2001, Stanford University
# All rights reserved.
#
# See the file LICENSE.txt for information on redistributing this software.

import entrypoints

hacks = ["TexImage3D", "TexImage2D", "TexImage1D", "MultiDrawArrays",
         "BufferData", "BufferSubData", "GetBufferSubData" ]

entrypoints.GenerateEntrypoints(hacks)
github svn2github / virtualbox / trunk / src / VBox / Additions / common / crOpenGL / Linux_exports.py View on Github external
# Copyright (c) 2001, Stanford University
# All rights reserved.
#
# See the file LICENSE.txt for information on redistributing this software.

import entrypoints

hacks = []

entrypoints.GenerateEntrypoints(hacks)
github rpavlik / chromium / opengl_stub / IRIX64_exports.py View on Github external
# Copyright (c) 2001, Stanford University
# All rights reserved.
#
# See the file LICENSE.txt for information on redistributing this software.

import entrypoints

hacks = ["TexImage3D", "EdgeFlagPointer" ]

entrypoints.GenerateEntrypoints(hacks)
github rpavlik / chromium / opengl_stub / FreeBSD_exports.py View on Github external
# Copyright (c) 2001, Stanford University
# All rights reserved.
#
# See the file LICENSE.txt for information on redistributing this software.

import entrypoints

hacks = []

entrypoints.GenerateEntrypoints(hacks)
github svn2github / virtualbox / trunk / src / VBox / Additions / common / crOpenGL / OSF1_exports.py View on Github external
# Copyright (c) 2001, Stanford University
# All rights reserved.
#
# See the file LICENSE.txt for information on redistributing this software.

import entrypoints

hacks = []

entrypoints.GenerateEntrypoints(hacks)
github svn2github / virtualbox / trunk / src / VBox / Additions / common / crOpenGL / Darwin_exports.py View on Github external
# Copyright (c) 2001, Stanford University
# All rights reserved.
#
# See the file LICENSE.txt for information on redistributing this software.

import entrypoints

hacks = ["TexImage3D", "TexImage2D", "TexImage1D", "MultiDrawArrays",
         "BufferData", "BufferSubData", "GetBufferSubData" ]

entrypoints.GenerateEntrypoints(hacks)