Home
last modified time | relevance | path

Searched refs:contextID (Results 1 – 25 of 760) sorted by relevance

12345678910>>...31

/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osg/
H A DGLObjects.cpp44 void osg::flushAllDeletedGLObjects(unsigned int contextID) in flushAllDeletedGLObjects() argument
50 osg::Drawable::flushAllDeletedDisplayLists(contextID); in flushAllDeletedGLObjects()
59 osg::Texture::flushAllDeletedTextureObjects(contextID); in flushAllDeletedGLObjects()
69 void osg::deleteAllGLObjects(unsigned int contextID) in deleteAllGLObjects() argument
75 osg::Drawable::flushAllDeletedDisplayLists(contextID); in deleteAllGLObjects()
83 osg::GLBufferObject::deleteAllBufferObjects(contextID); in deleteAllGLObjects()
84 osg::Texture::deleteAllTextureObjects(contextID); in deleteAllGLObjects()
94 void osg::discardAllGLObjects(unsigned int contextID) in discardAllGLObjects() argument
106 osg::Texture::discardAllTextureObjects(contextID); in discardAllGLObjects()
109 osg::Program::discardDeletedGlPrograms(contextID); in discardAllGLObjects()
[all …]
H A DGLExtensions.cpp97 ExtensionSet& extensionSet = s_glExtensionSetList[contextID]; in isGLExtensionOrVersionSupported()
98 std::string& rendererString = s_glRendererList[contextID]; in isGLExtensionOrVersionSupported()
106 if (!s_glInitializedList[contextID]) in isGLExtensionOrVersionSupported()
108 s_glInitializedList[contextID] = 1; in isGLExtensionOrVersionSupported()
420 if (!s_extensions[contextID] && createIfNotInitalized) in Get()
421 s_extensions[contextID] = new GLExtensions(contextID); in Get()
423 return s_extensions[contextID].get(); in Get()
428 s_extensions[contextID] = extensions; in Set()
434 GLExtensions::GLExtensions(unsigned int contextID) in GLExtensions() argument
810 …CSupported = isGLExtensionSupported(contextID,"GL_EXT_texture_compression_s3tc") || isGLExtensionS… in GLExtensions()
[all …]
H A DTexture1D.cpp135 const unsigned int contextID = state.getContextID(); in apply() local
142 TextureObject* textureObject = getTextureObject(contextID); in apply()
156 Texture::releaseTextureObject(contextID, _textureObjectBuffer[contextID].get()); in apply()
157 _textureObjectBuffer[contextID] = 0; in apply()
220 _textureObjectBuffer[contextID] = textureObject; in apply()
386 const unsigned int contextID = state.getContextID(); in copyTexImage1D() local
389 TextureObject* textureObject = getTextureObject(contextID); in copyTexImage1D()
443 const unsigned int contextID = state.getContextID(); in copyTexSubImage1D() local
446 TextureObject* textureObject = getTextureObject(contextID); in copyTexSubImage1D()
475 const unsigned int contextID = state.getContextID(); in allocateMipmap() local
[all …]
H A DTexture2D.cpp166 const unsigned int contextID = state.getContextID(); in apply() local
173 TextureObject* textureObject = getTextureObject(contextID); in apply()
189 Texture::releaseTextureObject(contextID, _textureObjectBuffer[contextID].get()); in apply()
190 _textureObjectBuffer[contextID] = 0; in apply()
276 getModifiedCount(contextID) = image->getModifiedCount(); in apply()
333 const unsigned int contextID = state.getContextID(); in copyTexImage2D() local
338 TextureObject* textureObject = getTextureObject(contextID); in copyTexImage2D()
412 const unsigned int contextID = state.getContextID(); in copyTexSubImage2D() local
417 TextureObject* textureObject = getTextureObject(contextID); in copyTexSubImage2D()
460 const unsigned int contextID = state.getContextID(); in allocateMipmap() local
[all …]
H A DFrameBufferObject.cpp148 GLuint &objectID = _objectID[contextID];
150 int &dirty = _dirty[contextID];
210 if (_objectID[contextID])
212 deleteRenderBuffer(contextID, _objectID[contextID]);
213 _objectID[contextID] = 0;
710 if (_fboID[contextID])
712 deleteFrameBufferObject(contextID, _fboID[contextID]);
713 _fboID[contextID] = 0;
771 if (_unsupported[contextID])
778 _unsupported[contextID] = 1;
[all …]
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osg/
H A DContextData.cpp27 ContextData::ContextData(unsigned int contextID): in ContextData() argument
28 GraphicsObjectManager("ContextData", contextID), in ContextData()
145 cd = new ContextData(contextID); in getOrCreateContextData()
170 unsigned int contextID = s_contextIDMap.size(); in createNewContextID() local
171 s_contextIDMap[contextID] = new ContextData(contextID); in createNewContextID()
172 s_contextIDMap[contextID]->setNumContexts(1); in createNewContextID()
181 return contextID; in createNewContextID()
202 if (!s_contextIDMap[contextID]) s_contextIDMap[contextID] = new ContextData(contextID); in incrementContextIDUsageCount()
213 if (s_contextIDMap[contextID].valid()) in decrementContextIDUsageCount()
222 s_contextIDMap[contextID] = 0; in decrementContextIDUsageCount()
[all …]
H A DGLExtensions.cpp94 bool osg::isGLExtensionSupported(unsigned int contextID, const char *extension) in isGLExtensionSupported() argument
96 return osg::isGLExtensionOrVersionSupported(contextID, extension, FLT_MAX); in isGLExtensionSupported()
107 ExtensionSet& extensionSet = s_glExtensionSetList[contextID]; in isGLExtensionOrVersionSupported()
108 std::string& rendererString = s_glRendererList[contextID]; in isGLExtensionOrVersionSupported()
116 if (!s_glInitializedList[contextID]) in isGLExtensionOrVersionSupported()
118 s_glInitializedList[contextID] = 1; in isGLExtensionOrVersionSupported()
440 contextID(in_contextID) in GLExtensions()
853 …dContext && (isGLExtensionSupported(contextID,"GL_EXT_texture_compression_s3tc") || isGLExtensionS… in GLExtensions()
1291 s_glExtensionSetList[contextID] = ExtensionSet(); in ~GLExtensions()
1292 s_glRendererList[contextID] = std::string(); in ~GLExtensions()
[all …]
H A DGLObjects.cpp24 osg::getContextData(contextID)->flushDeletedGLObjects(currentTime, availableTime); in flushDeletedGLObjects()
27 void osg::flushAllDeletedGLObjects(unsigned int contextID) in flushAllDeletedGLObjects() argument
29 osg::getContextData(contextID)->flushAllDeletedGLObjects(); in flushAllDeletedGLObjects()
32 void osg::deleteAllGLObjects(unsigned int contextID) in deleteAllGLObjects() argument
34 osg::getContextData(contextID)->deleteAllGLObjects(); in deleteAllGLObjects()
37 void osg::discardAllGLObjects(unsigned int contextID) in discardAllGLObjects() argument
39 osg::getContextData(contextID)->discardAllGLObjects(); in discardAllGLObjects()
61 GraphicsObjectManager::GraphicsObjectManager(const std::string& name, unsigned int contextID): in GraphicsObjectManager() argument
63 _contextID(contextID) in GraphicsObjectManager()
76 GLObjectManager::GLObjectManager(const std::string& name, unsigned int contextID): in GLObjectManager() argument
[all …]
H A DTexture2D.cpp167 const unsigned int contextID = state.getContextID(); in apply() local
170 TextureObject* textureObject = getTextureObject(contextID); in apply()
186 _textureObjectBuffer[contextID]->release(); in apply()
187 _textureObjectBuffer[contextID] = 0; in apply()
224 textureObject = _textureObjectBuffer[contextID].get(); in apply()
267 getModifiedCount(contextID) = image->getModifiedCount(); in apply()
351 const unsigned int contextID = state.getContextID(); in copyTexImage2D() local
356 TextureObject* textureObject = getTextureObject(contextID); in copyTexImage2D()
430 const unsigned int contextID = state.getContextID(); in copyTexSubImage2D() local
435 TextureObject* textureObject = getTextureObject(contextID); in copyTexSubImage2D()
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/cli/cli-20.10.2/cli/context/store/
H A Dtlsstore.go19 func (s *tlsStore) endpointDir(contextID contextdir, name string) string {
20 return filepath.Join(s.root, string(contextID), name)
24 return filepath.Join(s.root, string(contextID), endpointName, filename)
28 epdir := s.endpointDir(contextID, endpointName)
40 data, err := ioutil.ReadFile(s.filePath(contextID, endpointName, filename))
48 err := os.Remove(s.filePath(contextID, endpointName, filename))
56 return os.RemoveAll(s.endpointDir(contextID, endpointName))
59 func (s *tlsStore) removeAllContextData(contextID contextdir) error {
60 return os.RemoveAll(s.contextDir(contextID))
64 epFSs, err := ioutil.ReadDir(s.contextDir(contextID))
[all …]
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/docker/cli/cli/context/store/
H A Dtlsstore.go19 func (s *tlsStore) endpointDir(contextID contextdir, name string) string {
20 return filepath.Join(s.root, string(contextID), name)
24 return filepath.Join(s.root, string(contextID), endpointName, filename)
28 epdir := s.endpointDir(contextID, endpointName)
40 data, err := ioutil.ReadFile(s.filePath(contextID, endpointName, filename))
48 err := os.Remove(s.filePath(contextID, endpointName, filename))
56 return os.RemoveAll(s.endpointDir(contextID, endpointName))
59 func (s *tlsStore) removeAllContextData(contextID contextdir) error {
60 return os.RemoveAll(s.contextDir(contextID))
64 epFSs, err := ioutil.ReadDir(s.contextDir(contextID))
[all …]
/dports/net/traefik/traefik-2.6.1/vendor/github.com/docker/cli/cli/context/store/
H A Dtlsstore.go19 func (s *tlsStore) endpointDir(contextID contextdir, name string) string {
20 return filepath.Join(s.root, string(contextID), name)
24 return filepath.Join(s.root, string(contextID), endpointName, filename)
28 epdir := s.endpointDir(contextID, endpointName)
40 data, err := ioutil.ReadFile(s.filePath(contextID, endpointName, filename))
48 err := os.Remove(s.filePath(contextID, endpointName, filename))
56 return os.RemoveAll(s.endpointDir(contextID, endpointName))
59 func (s *tlsStore) removeAllContextData(contextID contextdir) error {
60 return os.RemoveAll(s.contextDir(contextID))
64 epFSs, err := ioutil.ReadDir(s.contextDir(contextID))
[all …]
/dports/graphics/mesa-dri-classic/mesa-20.2.3/src/gallium/targets/haiku-softpipe/
H A DGalliumContext.cpp242 if (!fContext[contextID]) in DestroyContext()
245 if (fContext[contextID]->st) { in DestroyContext()
246 fContext[contextID]->st->flush(fContext[contextID]->st, 0, NULL, NULL, NULL); in DestroyContext()
247 fContext[contextID]->st->destroy(fContext[contextID]->st); in DestroyContext()
254 if (fContext[contextID]->read) in DestroyContext()
256 if (fContext[contextID]->draw) in DestroyContext()
262 if (fContext[contextID]->manager) in DestroyContext()
265 FREE(fContext[contextID]); in DestroyContext()
274 if (contextID < 0 || contextID > CONTEXT_MAX) { in SetCurrentContext()
286 __func__, contextID); in SetCurrentContext()
[all …]
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/gallium/targets/haiku-softpipe/
H A DGalliumContext.cpp260 if (!fContext[contextID]) in DestroyContext()
263 if (fContext[contextID]->st) { in DestroyContext()
264 fContext[contextID]->st->flush(fContext[contextID]->st, 0, NULL, NULL, NULL); in DestroyContext()
265 fContext[contextID]->st->destroy(fContext[contextID]->st); in DestroyContext()
268 if (fContext[contextID]->postProcess) in DestroyContext()
272 if (fContext[contextID]->buffer) in DestroyContext()
275 if (fContext[contextID]->stVisual) in DestroyContext()
278 FREE(fContext[contextID]); in DestroyContext()
287 if (contextID < 0 || contextID > CONTEXT_MAX) { in SetCurrentContext()
298 __func__, contextID); in SetCurrentContext()
[all …]
/dports/lang/clover/mesa-21.3.6/src/gallium/targets/haiku-softpipe/
H A DGalliumContext.cpp260 if (!fContext[contextID]) in DestroyContext()
263 if (fContext[contextID]->st) { in DestroyContext()
264 fContext[contextID]->st->flush(fContext[contextID]->st, 0, NULL, NULL, NULL); in DestroyContext()
265 fContext[contextID]->st->destroy(fContext[contextID]->st); in DestroyContext()
268 if (fContext[contextID]->postProcess) in DestroyContext()
272 if (fContext[contextID]->buffer) in DestroyContext()
275 if (fContext[contextID]->stVisual) in DestroyContext()
278 FREE(fContext[contextID]); in DestroyContext()
287 if (contextID < 0 || contextID > CONTEXT_MAX) { in SetCurrentContext()
298 __func__, contextID); in SetCurrentContext()
[all …]
/dports/graphics/libosmesa/mesa-21.3.6/src/gallium/targets/haiku-softpipe/
H A DGalliumContext.cpp260 if (!fContext[contextID]) in DestroyContext()
263 if (fContext[contextID]->st) { in DestroyContext()
264 fContext[contextID]->st->flush(fContext[contextID]->st, 0, NULL, NULL, NULL); in DestroyContext()
265 fContext[contextID]->st->destroy(fContext[contextID]->st); in DestroyContext()
268 if (fContext[contextID]->postProcess) in DestroyContext()
272 if (fContext[contextID]->buffer) in DestroyContext()
275 if (fContext[contextID]->stVisual) in DestroyContext()
278 FREE(fContext[contextID]); in DestroyContext()
287 if (contextID < 0 || contextID > CONTEXT_MAX) { in SetCurrentContext()
298 __func__, contextID); in SetCurrentContext()
[all …]
/dports/graphics/mesa-gallium-xa/mesa-21.3.6/src/gallium/targets/haiku-softpipe/
H A DGalliumContext.cpp260 if (!fContext[contextID]) in DestroyContext()
263 if (fContext[contextID]->st) { in DestroyContext()
264 fContext[contextID]->st->flush(fContext[contextID]->st, 0, NULL, NULL, NULL); in DestroyContext()
265 fContext[contextID]->st->destroy(fContext[contextID]->st); in DestroyContext()
268 if (fContext[contextID]->postProcess) in DestroyContext()
272 if (fContext[contextID]->buffer) in DestroyContext()
275 if (fContext[contextID]->stVisual) in DestroyContext()
278 FREE(fContext[contextID]); in DestroyContext()
287 if (contextID < 0 || contextID > CONTEXT_MAX) { in SetCurrentContext()
298 __func__, contextID); in SetCurrentContext()
[all …]
/dports/graphics/mesa-gallium-vdpau/mesa-21.3.6/src/gallium/targets/haiku-softpipe/
H A DGalliumContext.cpp260 if (!fContext[contextID]) in DestroyContext()
263 if (fContext[contextID]->st) { in DestroyContext()
264 fContext[contextID]->st->flush(fContext[contextID]->st, 0, NULL, NULL, NULL); in DestroyContext()
265 fContext[contextID]->st->destroy(fContext[contextID]->st); in DestroyContext()
268 if (fContext[contextID]->postProcess) in DestroyContext()
272 if (fContext[contextID]->buffer) in DestroyContext()
275 if (fContext[contextID]->stVisual) in DestroyContext()
278 FREE(fContext[contextID]); in DestroyContext()
287 if (contextID < 0 || contextID > CONTEXT_MAX) { in SetCurrentContext()
298 __func__, contextID); in SetCurrentContext()
[all …]
/dports/graphics/mesa-libs/mesa-21.3.6/src/gallium/targets/haiku-softpipe/
H A DGalliumContext.cpp260 if (!fContext[contextID]) in DestroyContext()
263 if (fContext[contextID]->st) { in DestroyContext()
264 fContext[contextID]->st->flush(fContext[contextID]->st, 0, NULL, NULL, NULL); in DestroyContext()
265 fContext[contextID]->st->destroy(fContext[contextID]->st); in DestroyContext()
268 if (fContext[contextID]->postProcess) in DestroyContext()
272 if (fContext[contextID]->buffer) in DestroyContext()
275 if (fContext[contextID]->stVisual) in DestroyContext()
278 FREE(fContext[contextID]); in DestroyContext()
287 if (contextID < 0 || contextID > CONTEXT_MAX) { in SetCurrentContext()
298 __func__, contextID); in SetCurrentContext()
[all …]
/dports/graphics/mesa-dri-gallium/mesa-21.3.6/src/gallium/targets/haiku-softpipe/
H A DGalliumContext.cpp260 if (!fContext[contextID]) in DestroyContext()
263 if (fContext[contextID]->st) { in DestroyContext()
264 fContext[contextID]->st->flush(fContext[contextID]->st, 0, NULL, NULL, NULL); in DestroyContext()
265 fContext[contextID]->st->destroy(fContext[contextID]->st); in DestroyContext()
268 if (fContext[contextID]->postProcess) in DestroyContext()
272 if (fContext[contextID]->buffer) in DestroyContext()
275 if (fContext[contextID]->stVisual) in DestroyContext()
278 FREE(fContext[contextID]); in DestroyContext()
287 if (contextID < 0 || contextID > CONTEXT_MAX) { in SetCurrentContext()
298 __func__, contextID); in SetCurrentContext()
[all …]
/dports/graphics/mesa-gallium-va/mesa-21.3.6/src/gallium/targets/haiku-softpipe/
H A DGalliumContext.cpp260 if (!fContext[contextID]) in DestroyContext()
263 if (fContext[contextID]->st) { in DestroyContext()
264 fContext[contextID]->st->flush(fContext[contextID]->st, 0, NULL, NULL, NULL); in DestroyContext()
265 fContext[contextID]->st->destroy(fContext[contextID]->st); in DestroyContext()
268 if (fContext[contextID]->postProcess) in DestroyContext()
272 if (fContext[contextID]->buffer) in DestroyContext()
275 if (fContext[contextID]->stVisual) in DestroyContext()
278 FREE(fContext[contextID]); in DestroyContext()
287 if (contextID < 0 || contextID > CONTEXT_MAX) { in SetCurrentContext()
298 __func__, contextID); in SetCurrentContext()
[all …]
/dports/graphics/mesa-devel/mesa-22.0-branchpoint-2059-ge8a63cf61ec/src/gallium/targets/haiku-softpipe/
H A DGalliumContext.cpp260 if (!fContext[contextID]) in DestroyContext()
263 if (fContext[contextID]->st) { in DestroyContext()
264 fContext[contextID]->st->flush(fContext[contextID]->st, 0, NULL, NULL, NULL); in DestroyContext()
265 fContext[contextID]->st->destroy(fContext[contextID]->st); in DestroyContext()
268 if (fContext[contextID]->postProcess) in DestroyContext()
272 if (fContext[contextID]->buffer) in DestroyContext()
275 if (fContext[contextID]->stVisual) in DestroyContext()
278 FREE(fContext[contextID]); in DestroyContext()
287 if (contextID < 0 || contextID > CONTEXT_MAX) { in SetCurrentContext()
298 __func__, contextID); in SetCurrentContext()
[all …]
/dports/graphics/mesa-dri/mesa-21.3.6/src/gallium/targets/haiku-softpipe/
H A DGalliumContext.cpp260 if (!fContext[contextID]) in DestroyContext()
263 if (fContext[contextID]->st) { in DestroyContext()
264 fContext[contextID]->st->flush(fContext[contextID]->st, 0, NULL, NULL, NULL); in DestroyContext()
265 fContext[contextID]->st->destroy(fContext[contextID]->st); in DestroyContext()
268 if (fContext[contextID]->postProcess) in DestroyContext()
272 if (fContext[contextID]->buffer) in DestroyContext()
275 if (fContext[contextID]->stVisual) in DestroyContext()
278 FREE(fContext[contextID]); in DestroyContext()
287 if (contextID < 0 || contextID > CONTEXT_MAX) { in SetCurrentContext()
298 __func__, contextID); in SetCurrentContext()
[all …]
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/include/osg/
H A DContextData24 ContextData(unsigned int contextID);
97 …/** Create a contextID for a new graphics context, this contextID is used to set up the osg::State…
104 … the usage count associate with a contextID. The usage count specifies how many graphics contexts …
105 static void incrementContextIDUsageCount(unsigned int contextID);
107 …/** Decrement the usage count associate with a contextID. Once the contextID goes to 0 the context…
145 /** Get the ContextData for a specific contextID.*/
146 extern OSG_EXPORT ContextData* getContextData(unsigned int contextID);
148 /** Get or create the ContextData for a specific contextID.*/
152 inline T* get(unsigned int contextID)
154 ContextData* gc = getOrCreateContextData(contextID);
[all …]
/dports/www/kf5-khtml/khtml-5.89.0/src/java/org/kde/kjas/server/
H A DKJASProtocolHandler.java127 String contextID = getArg( command ); in processCommand() local
131 contexts.put( contextID, context ); in processCommand()
143 contexts.remove( contextID ); in processCommand()
468 tmp_bytes = contextID.getBytes(); in sendAppletStateNotification()
507 tmp_bytes = contextID.getBytes(); in sendAppletFailed()
570 tmp_bytes = contextID.getBytes(); in sendShowDocumentCmd()
601 tmp_bytes = contextID.getBytes(); in sendShowStatusCmd()
634 tmp_bytes = contextID.getBytes(); in sendResizeAppletCmd()
677 tmp_bytes = contextID.getBytes(); in sendJavaScriptEventCmd()
727 tmp_bytes = contextID.getBytes(); in sendMemberValue()
[all …]

12345678910>>...31