Home
last modified time | relevance | path

Searched refs:clearColor (Results 1 – 25 of 1949) sorted by relevance

12345678910>>...78

/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/tests/spec/arb_framebuffer_srgb/
H A Dclear.c104 glClearColor(clearColor[0], in test_srgb_clear()
105 clearColor[1], in test_srgb_clear()
106 clearColor[2], in test_srgb_clear()
107 clearColor[3]); in test_srgb_clear()
123 if (fabs(texColor[0] - clearColor[0]) > tolerance || in test_srgb_clear()
124 fabs(texColor[1] - clearColor[1]) > tolerance || in test_srgb_clear()
125 fabs(texColor[2] - clearColor[2]) > tolerance || in test_srgb_clear()
128 clearColor[0], in test_srgb_clear()
129 clearColor[1], in test_srgb_clear()
130 clearColor[2], in test_srgb_clear()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/framework/vulkan/
H A DvkCmdUtil.cpp89 const tcu::Vec4& clearColor, in beginRenderPass() argument
92 const VkClearValue clearValue = makeClearValueColor(clearColor); in beginRenderPass()
102 const tcu::Vec4& clearColor, in beginRenderPass() argument
106 const VkClearValue clearValue = makeClearValueColor(clearColor); in beginRenderPass()
116 const tcu::Vec4& clearColor, in beginRenderPass() argument
124 makeClearValueColor(clearColor), // attachment 0 in beginRenderPass()
136 const tcu::UVec4& clearColor, in beginRenderPass() argument
139 …ClearValue clearValue = makeClearValueColorU32(clearColor.x(), clearColor.y(), clearColor.z(), cle… in beginRenderPass()
170 const tcu::Vec4& clearColor, in beginRenderPass() argument
177 makeClearValueColor(clearColor), // attachment 0 in beginRenderPass()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/src/tests/gl_tests/
H A DFloatingPointSurfaceTest.cpp50 GLColor32F clearColor(0.0f, 1.0f, 2.0f, 3.0f); in TEST_P() local
51 glClearColor(clearColor.R, clearColor.G, clearColor.B, clearColor.A); in TEST_P()
55 EXPECT_PIXEL_COLOR32F_EQ(0, 0, clearColor); in TEST_P()
/dports/games/jvgs/jvgs-0.5.1-src/src/video/
H A DVideoManager.cpp191 void VideoManager::setClearColor(const Color &clearColor) in setClearColor() argument
193 this->clearColor = clearColor; in setClearColor()
194 glClearColor(clearColor.getRed(), clearColor.getGreen(), in setClearColor()
195 clearColor.getBlue(), clearColor.getAlpha()); in setClearColor()
200 return clearColor; in getClearColor()
206 setColor(clearColor); in invert()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/tests/end2end/
H A DD3D12ResourceWrappingTests.cpp282 void ClearImage(wgpu::Texture wrappedTexture, const wgpu::Color& clearColor) { in ClearImage() argument
287 renderPassDescriptor.cColorAttachments[0].clearColor = clearColor; in ClearImage()
300 const wgpu::Color& clearColor, in WrapAndClearD3D11Texture() argument
330 static_cast<float>(clearColor.r), static_cast<float>(clearColor.g), in WrapAndClearD3D11Texture()
331 static_cast<float>(clearColor.b), static_cast<float>(clearColor.a)}; in WrapAndClearD3D11Texture()
415 const wgpu::Color clearColor{1.0f, 1.0f, 0.0f, 1.0f}; in TEST_P() local
429 RGBA8(clearColor.r * 255u, clearColor.g * 255u, clearColor.b * 255u, clearColor.a * 255u), in TEST_P()
438 const wgpu::Color clearColor{1.0f, 1.0f, 0.0f, 1.0f}; in TEST_P() local
442 WrapAndClearD3D11Texture(&baseDawnDescriptor, &baseD3dDescriptor, &dawnTexture, clearColor, in TEST_P()
448 RGBA8(clearColor.r * 255, clearColor.g * 255, clearColor.b * 255, clearColor.a * 255), in TEST_P()
[all …]
/dports/graphics/jogamp-jogl/jogl/src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/
H A DTextureDraw01ES2Listener.java61 float[] clearColor = new float[] { 1.0f, 1.0f, 1.0f, 1.0f }; field in TextureDraw01ES2Listener
74 public void setClearColor(final float[] clearColor) { in setClearColor() argument
75 this.clearColor = clearColor; in setClearColor()
177 gl.glClearColor(clearColor[0], clearColor[1], clearColor[2], clearColor[3]); in init()
193 gl.glClearColor(clearColor[0], clearColor[1], clearColor[2], clearColor[3]); in reshape()
/dports/games/libretro-desmume2015/desmume2015-d6128e6/desmume/src/
H A Drender3D.cpp307 FragmentColor clearColor; in ClearFramebuffer() local
308 clearColor.r = renderState.clearColor & 0x1F; in ClearFramebuffer()
309 clearColor.g = (renderState.clearColor >> 5) & 0x1F; in ClearFramebuffer()
310 clearColor.b = (renderState.clearColor >> 10) & 0x1F; in ClearFramebuffer()
311 clearColor.a = (renderState.clearColor >> 16) & 0x1F; in ClearFramebuffer()
399 const FragmentColor &clearColor, in ClearUsingValues() argument
549 FragmentColor clearColor; in ClearFramebuffer() local
550 clearColor.r = renderState.clearColor & 0x1F; in ClearFramebuffer()
551 clearColor.g = (renderState.clearColor >> 5) & 0x1F; in ClearFramebuffer()
552 clearColor.b = (renderState.clearColor >> 10) & 0x1F; in ClearFramebuffer()
[all …]
/dports/games/openra/OpenRA-release-20200503/OpenRA.Platforms.Default/
H A DFrameBuffer.cs23 readonly Color clearColor; field in OpenRA.Platforms.Default.FrameBuffer
28 public FrameBuffer(Size size, ITextureInternal texture, Color clearColor) in FrameBuffer() argument
31 this.clearColor = clearColor; in FrameBuffer()
96 OpenGL.glClearColor(clearColor.R, clearColor.G, clearColor.B, clearColor.A); in Bind()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/gles2/functional/
H A Des2fDepthTests.cpp123 tcu::Vec4 clearColor = tcu::Vec4(0.125f, 0.25f, 0.5f, 1.0f); in iterate() local
146 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w()); in iterate()
159 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w()); in iterate()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/gles3/functional/
H A Des3fDepthTests.cpp126 tcu::Vec4 clearColor = tcu::Vec4(0.125f, 0.25f, 0.5f, 1.0f); in iterate() local
149 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w()); in iterate()
162 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w()); in iterate()
/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/tests/spec/gl-3.2/layered-rendering/
H A Dclear-color.c167 const float clearColor[3] = { 1, 1, 0 }; in piglit_display() local
176 glClearColor(clearColor[0], clearColor[1], clearColor[2], 1); in piglit_display()
181 glClearBufferfv(GL_COLOR, 0, clearColor); in piglit_display()
201 clearColor)) { in piglit_display()
208 piglit_height, clearColor)) { in piglit_display()
/dports/graphics/qgis/qgis-3.22.3/external/qt3dextra-headers/Qt3DExtras/
H A Dqforwardrenderer.h63 Q_PROPERTY(QColor clearColor READ clearColor WRITE setClearColor NOTIFY clearColorChanged)
73 QColor clearColor() const;
82 void setClearColor(const QColor &clearColor);
91 void clearColorChanged(const QColor &clearColor);
/dports/graphics/qgis-ltr/qgis-3.16.16/external/qt3dextra-headers/Qt3DExtras/
H A Dqforwardrenderer.h63 Q_PROPERTY(QColor clearColor READ clearColor WRITE setClearColor NOTIFY clearColorChanged)
73 QColor clearColor() const;
82 void setClearColor(const QColor &clearColor);
91 void clearColorChanged(const QColor &clearColor);
/dports/databases/py-qt5-sql/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)
/dports/multimedia/py-qt5-multimediawidgets/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)
/dports/multimedia/py-qt5-multimedia/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)
/dports/www/py-qt5-websockets/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)
/dports/www/py-qt5-webchannel/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)
/dports/www/py-qt5-webkit/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)
/dports/www/py-qt5-webkitwidgets/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)
/dports/x11-toolkits/py-qt5-widgets/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)
/dports/comms/py-qt5-serialport/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)
/dports/comms/py-qt5-sensors/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)
/dports/net/py-qt5-network/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)
/dports/devel/py-qt5-test/PyQt5-5.15.4/examples/opengl/textures/
H A Dtextures.py93 self.clearColor = QColor(Qt.black)
114 self.clearColor = color
154 self.gl.glClearColor(self.clearColor.redF(), self.clearColor.greenF(),
155 self.clearColor.blueF(), self.clearColor.alphaF())
228 clearColor = QColor()
229 clearColor.setHsv(((i * Window.NumColumns) + j) * 255
234 widget.setClearColor(clearColor)

12345678910>>...78