Home
last modified time | relevance | path

Searched refs:dirtyBit (Results 1 – 25 of 291) sorted by relevance

12345678910>>...12

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/angle/src/libANGLE/
H A DVertexArray_unittest.cpp29 for (size_t dirtyBit : dirtyBits) in TEST() local
31 const size_t index = VertexArray::GetVertexIndexFromDirtyBit(dirtyBit); in TEST()
32 if (dirtyBit < VertexArray::DIRTY_BIT_ATTRIB_0) in TEST()
36 else if (dirtyBit < VertexArray::DIRTY_BIT_ATTRIB_MAX) in TEST()
38 EXPECT_EQ(dirtyBit - VertexArray::DIRTY_BIT_ATTRIB_0, index); in TEST()
40 else if (dirtyBit < VertexArray::DIRTY_BIT_BINDING_MAX) in TEST()
42 EXPECT_EQ(dirtyBit - VertexArray::DIRTY_BIT_BINDING_0, index); in TEST()
44 else if (dirtyBit < VertexArray::DIRTY_BIT_BUFFER_DATA_MAX) in TEST()
46 EXPECT_EQ(dirtyBit - VertexArray::DIRTY_BIT_BUFFER_DATA_0, index); in TEST()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/src/libANGLE/
H A DVertexArray_unittest.cpp29 for (size_t dirtyBit : dirtyBits) in TEST() local
31 const size_t index = VertexArray::GetVertexIndexFromDirtyBit(dirtyBit); in TEST()
32 if (dirtyBit < VertexArray::DIRTY_BIT_ATTRIB_0) in TEST()
36 else if (dirtyBit < VertexArray::DIRTY_BIT_ATTRIB_MAX) in TEST()
38 EXPECT_EQ(dirtyBit - VertexArray::DIRTY_BIT_ATTRIB_0, index); in TEST()
40 else if (dirtyBit < VertexArray::DIRTY_BIT_BINDING_MAX) in TEST()
42 EXPECT_EQ(dirtyBit - VertexArray::DIRTY_BIT_BINDING_0, index); in TEST()
44 else if (dirtyBit < VertexArray::DIRTY_BIT_BUFFER_DATA_MAX) in TEST()
46 EXPECT_EQ(dirtyBit - VertexArray::DIRTY_BIT_BUFFER_DATA_0, index); in TEST()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/angle/src/libANGLE/renderer/d3d/d3d11/
H A DVertexArray11.cpp22 size_t GetAttribIndex(unsigned long dirtyBit) in GetAttribIndex() argument
24 if (dirtyBit >= gl::VertexArray::DIRTY_BIT_ATTRIB_0_ENABLED && in GetAttribIndex()
25 dirtyBit < gl::VertexArray::DIRTY_BIT_ATTRIB_MAX_ENABLED) in GetAttribIndex()
27 return dirtyBit - gl::VertexArray::DIRTY_BIT_ATTRIB_0_ENABLED; in GetAttribIndex()
30 if (dirtyBit >= gl::VertexArray::DIRTY_BIT_ATTRIB_0_POINTER && in GetAttribIndex()
31 dirtyBit < gl::VertexArray::DIRTY_BIT_ATTRIB_MAX_POINTER) in GetAttribIndex()
33 return dirtyBit - gl::VertexArray::DIRTY_BIT_ATTRIB_0_POINTER; in GetAttribIndex()
36 ASSERT(dirtyBit >= gl::VertexArray::DIRTY_BIT_ATTRIB_0_DIVISOR && in GetAttribIndex()
37 dirtyBit < gl::VertexArray::DIRTY_BIT_ATTRIB_MAX_DIVISOR); in GetAttribIndex()
67 for (auto dirtyBit : angle::IterateBitSet(dirtyBits)) in syncState() local
[all …]
H A DFramebuffer11.cpp387 for (auto dirtyBit : IterateBitSet(mergedDirtyBits)) in syncState() local
389 switch (dirtyBit) in syncState()
401 dirtyBit < gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_MAX); in syncState()
403 static_cast<size_t>(dirtyBit - gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_0); in syncState()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/angle/src/libANGLE/renderer/gl/
H A DVertexArrayGL.cpp460 for (unsigned long dirtyBit : angle::IterateBitSet(dirtyBits)) in syncState() local
462 if (dirtyBit == VertexArray::DIRTY_BIT_ELEMENT_ARRAY_BUFFER) in syncState()
466 else if (dirtyBit >= VertexArray::DIRTY_BIT_ATTRIB_0_ENABLED && in syncState()
467 dirtyBit < VertexArray::DIRTY_BIT_ATTRIB_MAX_ENABLED) in syncState()
470 static_cast<size_t>(dirtyBit) - VertexArray::DIRTY_BIT_ATTRIB_0_ENABLED; in syncState()
473 else if (dirtyBit >= VertexArray::DIRTY_BIT_ATTRIB_0_POINTER && in syncState()
474 dirtyBit < VertexArray::DIRTY_BIT_ATTRIB_MAX_POINTER) in syncState()
477 static_cast<size_t>(dirtyBit) - VertexArray::DIRTY_BIT_ATTRIB_0_POINTER; in syncState()
480 else if (dirtyBit >= VertexArray::DIRTY_BIT_ATTRIB_0_DIVISOR && in syncState()
481 dirtyBit < VertexArray::DIRTY_BIT_ATTRIB_MAX_DIVISOR) in syncState()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/src/libANGLE/renderer/
H A DRenderTargetCache.h73 for (auto dirtyBit : dirtyBits) in update() local
75 switch (dirtyBit) in update()
93 if (dirtyBit < gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_MAX) in update()
96 dirtyBit - gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_0); in update()
/dports/www/firefox-esr/firefox-91.8.0/gfx/angle/checkout/src/libANGLE/renderer/
H A DRenderTargetCache.h73 for (auto dirtyBit : dirtyBits) in update() local
75 switch (dirtyBit) in update()
93 if (dirtyBit < gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_MAX) in update()
96 dirtyBit - gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_0); in update()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/angle/checkout/src/libANGLE/renderer/
H A DRenderTargetCache.h73 for (auto dirtyBit : dirtyBits) in update() local
75 switch (dirtyBit) in update()
93 if (dirtyBit < gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_MAX) in update()
96 dirtyBit - gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_0); in update()
/dports/www/firefox/firefox-99.0/gfx/angle/checkout/src/libANGLE/renderer/
H A DRenderTargetCache.h73 for (auto dirtyBit : dirtyBits) in update() local
75 switch (dirtyBit) in update()
93 if (dirtyBit < gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_MAX) in update()
96 dirtyBit - gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_0); in update()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/angle/checkout/src/libANGLE/renderer/
H A DRenderTargetCache.h73 for (auto dirtyBit : dirtyBits) in update() local
75 switch (dirtyBit) in update()
93 if (dirtyBit < gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_MAX) in update()
96 dirtyBit - gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_0); in update()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/angle/src/libANGLE/renderer/
H A DRenderTargetCache.h74 for (auto dirtyBit : dirtyBits) in update() local
76 switch (dirtyBit) in update()
94 if (dirtyBit < gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_MAX) in update()
97 dirtyBit - gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_0); in update()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/angle/src/libANGLE/renderer/d3d/
H A DFramebufferD3D.cpp334 for (auto dirtyBit : angle::IterateBitSet(dirtyBits)) in syncState() local
336 if ((dirtyBit >= gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_0 && in syncState()
337 dirtyBit < gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_MAX) || in syncState()
338 dirtyBit == gl::Framebuffer::DIRTY_BIT_DRAW_BUFFERS) in syncState()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/src/libANGLE/renderer/d3d/
H A DFramebufferD3D.cpp292 for (auto dirtyBit : dirtyBits) in syncState() local
294 if ((dirtyBit >= gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_0 && in syncState()
295 dirtyBit < gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_MAX) || in syncState()
296 dirtyBit == gl::Framebuffer::DIRTY_BIT_DRAW_BUFFERS) in syncState()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/angle/checkout/src/libANGLE/renderer/d3d/
H A DFramebufferD3D.cpp292 for (auto dirtyBit : dirtyBits) in syncState() local
294 if ((dirtyBit >= gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_0 && in syncState()
295 dirtyBit < gl::Framebuffer::DIRTY_BIT_COLOR_ATTACHMENT_MAX) || in syncState()
296 dirtyBit == gl::Framebuffer::DIRTY_BIT_DRAW_BUFFERS) in syncState()
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/3rdparty/angle/src/libANGLE/
H A DVertexArray.cpp103 size_t VertexArray::GetVertexIndexFromDirtyBit(size_t dirtyBit) in GetVertexIndexFromDirtyBit() argument
107 ASSERT(dirtyBit > DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in GetVertexIndexFromDirtyBit()
108 return (dirtyBit - DIRTY_BIT_ATTRIB_0_ENABLED) % gl::MAX_VERTEX_ATTRIBS; in GetVertexIndexFromDirtyBit()
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/3rdparty/angle/src/libANGLE/
H A DVertexArray.cpp103 size_t VertexArray::GetVertexIndexFromDirtyBit(size_t dirtyBit) in GetVertexIndexFromDirtyBit() argument
107 ASSERT(dirtyBit > DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in GetVertexIndexFromDirtyBit()
108 return (dirtyBit - DIRTY_BIT_ATTRIB_0_ENABLED) % gl::MAX_VERTEX_ATTRIBS; in GetVertexIndexFromDirtyBit()
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/3rdparty/angle/src/libANGLE/
H A DVertexArray.cpp103 size_t VertexArray::GetVertexIndexFromDirtyBit(size_t dirtyBit) in GetVertexIndexFromDirtyBit() argument
107 ASSERT(dirtyBit > DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in GetVertexIndexFromDirtyBit()
108 return (dirtyBit - DIRTY_BIT_ATTRIB_0_ENABLED) % gl::MAX_VERTEX_ATTRIBS; in GetVertexIndexFromDirtyBit()
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/3rdparty/angle/src/libANGLE/
H A DVertexArray.cpp103 size_t VertexArray::GetVertexIndexFromDirtyBit(size_t dirtyBit) in GetVertexIndexFromDirtyBit() argument
107 ASSERT(dirtyBit > DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in GetVertexIndexFromDirtyBit()
108 return (dirtyBit - DIRTY_BIT_ATTRIB_0_ENABLED) % gl::MAX_VERTEX_ATTRIBS; in GetVertexIndexFromDirtyBit()
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/3rdparty/angle/src/libANGLE/
H A DVertexArray.cpp103 size_t VertexArray::GetVertexIndexFromDirtyBit(size_t dirtyBit) in GetVertexIndexFromDirtyBit() argument
107 ASSERT(dirtyBit > DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in GetVertexIndexFromDirtyBit()
108 return (dirtyBit - DIRTY_BIT_ATTRIB_0_ENABLED) % gl::MAX_VERTEX_ATTRIBS; in GetVertexIndexFromDirtyBit()
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/3rdparty/angle/src/libANGLE/
H A DVertexArray.cpp103 size_t VertexArray::GetVertexIndexFromDirtyBit(size_t dirtyBit) in GetVertexIndexFromDirtyBit() argument
107 ASSERT(dirtyBit > DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in GetVertexIndexFromDirtyBit()
108 return (dirtyBit - DIRTY_BIT_ATTRIB_0_ENABLED) % gl::MAX_VERTEX_ATTRIBS; in GetVertexIndexFromDirtyBit()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/3rdparty/angle/src/libANGLE/
H A DVertexArray.cpp103 size_t VertexArray::GetVertexIndexFromDirtyBit(size_t dirtyBit) in GetVertexIndexFromDirtyBit() argument
107 ASSERT(dirtyBit > DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in GetVertexIndexFromDirtyBit()
108 return (dirtyBit - DIRTY_BIT_ATTRIB_0_ENABLED) % gl::MAX_VERTEX_ATTRIBS; in GetVertexIndexFromDirtyBit()
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/3rdparty/angle/src/libANGLE/
H A DVertexArray.cpp103 size_t VertexArray::GetVertexIndexFromDirtyBit(size_t dirtyBit) in GetVertexIndexFromDirtyBit() argument
107 ASSERT(dirtyBit > DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in GetVertexIndexFromDirtyBit()
108 return (dirtyBit - DIRTY_BIT_ATTRIB_0_ENABLED) % gl::MAX_VERTEX_ATTRIBS; in GetVertexIndexFromDirtyBit()
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/3rdparty/angle/src/libANGLE/
H A DVertexArray.cpp103 size_t VertexArray::GetVertexIndexFromDirtyBit(size_t dirtyBit) in GetVertexIndexFromDirtyBit() argument
107 ASSERT(dirtyBit > DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in GetVertexIndexFromDirtyBit()
108 return (dirtyBit - DIRTY_BIT_ATTRIB_0_ENABLED) % gl::MAX_VERTEX_ATTRIBS; in GetVertexIndexFromDirtyBit()
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/3rdparty/angle/src/libANGLE/
H A DVertexArray.cpp103 size_t VertexArray::GetVertexIndexFromDirtyBit(size_t dirtyBit) in GetVertexIndexFromDirtyBit() argument
107 ASSERT(dirtyBit > DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in GetVertexIndexFromDirtyBit()
108 return (dirtyBit - DIRTY_BIT_ATTRIB_0_ENABLED) % gl::MAX_VERTEX_ATTRIBS; in GetVertexIndexFromDirtyBit()
/dports/x11-toolkits/qt5-widgets/kde-qtbase-5.15.2p263/src/3rdparty/angle/src/libANGLE/
H A DVertexArray.cpp103 size_t VertexArray::GetVertexIndexFromDirtyBit(size_t dirtyBit) in GetVertexIndexFromDirtyBit() argument
107 ASSERT(dirtyBit > DIRTY_BIT_ELEMENT_ARRAY_BUFFER); in GetVertexIndexFromDirtyBit()
108 return (dirtyBit - DIRTY_BIT_ATTRIB_0_ENABLED) % gl::MAX_VERTEX_ATTRIBS; in GetVertexIndexFromDirtyBit()

12345678910>>...12