HomeSort by relevance Sort by last modified time
    Searched refs:RenderTarget (Results 1 - 25 of 126) sorted by null

1 2 3 4 5 6

  /external/deqp/framework/common/
tcuRenderTarget.cpp 29 RenderTarget::RenderTarget (void)
39 RenderTarget::RenderTarget (int width, int height, const PixelFormat& format, int depthBits, int stencilBits, int numSamples)
tcuRenderTarget.hpp 35 class RenderTarget
38 RenderTarget (void);
39 RenderTarget (int width, int height, const PixelFormat& pixelFormat, int depthBits, int stencilBits, int numSamples);
40 ~RenderTarget (void) {}
  /external/deqp/framework/opengl/
gluDummyRenderContext.hpp 54 virtual const tcu::RenderTarget& getRenderTarget (void) const { return m_renderTarget; }
58 tcu::RenderTarget m_renderTarget;
gluFboRenderContext.hpp 53 virtual const tcu::RenderTarget& getRenderTarget (void) const { return m_renderTarget; }
66 tcu::RenderTarget m_renderTarget;
gluES3PlusWrapperContext.hpp 60 virtual const tcu::RenderTarget& getRenderTarget (void) const { return m_context->getRenderTarget(); }
  /external/swiftshader/src/D3D9/
Capabilities.cpp 21 bool Capabilities::Surface::RenderTarget::NULL_ = true;
22 bool Capabilities::Surface::RenderTarget::R8G8B8 = false;
23 bool Capabilities::Surface::RenderTarget::R5G6B5 = true;
24 bool Capabilities::Surface::RenderTarget::X1R5G5B5 = true;
25 bool Capabilities::Surface::RenderTarget::A1R5G5B5 = true;
26 bool Capabilities::Surface::RenderTarget::A4R4G4B4 = true;
27 bool Capabilities::Surface::RenderTarget::R3G3B2 = false;
28 bool Capabilities::Surface::RenderTarget::A8R3G3B2 = false;
29 bool Capabilities::Surface::RenderTarget::X4R4G4B4 = true;
30 bool Capabilities::Surface::RenderTarget::A8R8G8B8 = true
    [all...]
Direct3D9.cpp 260 case D3DFMT_NULL: if(!Capabilities::Surface::RenderTarget::NULL_) return NOTAVAILABLE(); else return D3D_OK;
261 case D3DFMT_R8G8B8: if(!Capabilities::Surface::RenderTarget::R8G8B8) return NOTAVAILABLE(); else return D3D_OK;
262 case D3DFMT_R5G6B5: if(!Capabilities::Surface::RenderTarget::R5G6B5) return NOTAVAILABLE(); else return D3D_OK;
263 case D3DFMT_X1R5G5B5: if(!Capabilities::Surface::RenderTarget::X1R5G5B5) return NOTAVAILABLE(); else return D3D_OK;
264 case D3DFMT_A1R5G5B5: if(!Capabilities::Surface::RenderTarget::A1R5G5B5) return NOTAVAILABLE(); else return D3D_OK;
265 case D3DFMT_A4R4G4B4: if(!Capabilities::Surface::RenderTarget::A4R4G4B4) return NOTAVAILABLE(); else return D3D_OK;
266 case D3DFMT_R3G3B2: if(!Capabilities::Surface::RenderTarget::R3G3B2) return NOTAVAILABLE(); else return D3D_OK;
267 case D3DFMT_A8R3G3B2: if(!Capabilities::Surface::RenderTarget::A8R3G3B2) return NOTAVAILABLE(); else return D3D_OK;
268 case D3DFMT_X4R4G4B4: if(!Capabilities::Surface::RenderTarget::X4R4G4B4) return NOTAVAILABLE(); else return D3D_OK;
269 case D3DFMT_A8R8G8B8: if(!Capabilities::Surface::RenderTarget::A8R8G8B8) return NOTAVAILABLE(); else return D3D_OK
    [all...]
  /external/deqp/modules/gles2/
tes2Context.hpp 37 class RenderTarget;
54 const tcu::RenderTarget& getRenderTarget (void) const;
tes2Context.cpp 73 const tcu::RenderTarget& Context::getRenderTarget (void) const
  /external/deqp/modules/gles3/
tes3Context.hpp 37 class RenderTarget;
54 const tcu::RenderTarget& getRenderTarget (void) const;
tes3Context.cpp 70 const tcu::RenderTarget& Context::getRenderTarget (void) const
  /external/swiftshader/src/D3D8/
Capabilities.cpp 21 bool Capabilities::Surface::RenderTarget::R8G8B8 = false;
22 bool Capabilities::Surface::RenderTarget::R5G6B5 = true;
23 bool Capabilities::Surface::RenderTarget::X1R5G5B5 = true;
24 bool Capabilities::Surface::RenderTarget::A1R5G5B5 = true;
25 bool Capabilities::Surface::RenderTarget::A4R4G4B4 = true;
26 bool Capabilities::Surface::RenderTarget::R3G3B2 = false;
27 bool Capabilities::Surface::RenderTarget::A8R3G3B2 = false;
28 bool Capabilities::Surface::RenderTarget::X4R4G4B4 = true;
29 bool Capabilities::Surface::RenderTarget::A8R8G8B8 = true;
30 bool Capabilities::Surface::RenderTarget::X8R8G8B8 = true
    [all...]
Direct3D8.cpp 170 case D3DFMT_R8G8B8: if(!Capabilities::Surface::RenderTarget::R8G8B8) return NOTAVAILABLE(); else return D3D_OK;
171 case D3DFMT_R5G6B5: if(!Capabilities::Surface::RenderTarget::R5G6B5) return NOTAVAILABLE(); else return D3D_OK;
172 case D3DFMT_X1R5G5B5: if(!Capabilities::Surface::RenderTarget::X1R5G5B5) return NOTAVAILABLE(); else return D3D_OK;
173 case D3DFMT_A1R5G5B5: if(!Capabilities::Surface::RenderTarget::A1R5G5B5) return NOTAVAILABLE(); else return D3D_OK;
174 case D3DFMT_A4R4G4B4: if(!Capabilities::Surface::RenderTarget::A4R4G4B4) return NOTAVAILABLE(); else return D3D_OK;
175 case D3DFMT_R3G3B2: if(!Capabilities::Surface::RenderTarget::R3G3B2) return NOTAVAILABLE(); else return D3D_OK;
176 case D3DFMT_A8R3G3B2: if(!Capabilities::Surface::RenderTarget::A8R3G3B2) return NOTAVAILABLE(); else return D3D_OK;
177 case D3DFMT_X4R4G4B4: if(!Capabilities::Surface::RenderTarget::X4R4G4B4) return NOTAVAILABLE(); else return D3D_OK;
178 case D3DFMT_A8R8G8B8: if(!Capabilities::Surface::RenderTarget::A8R8G8B8) return NOTAVAILABLE(); else return D3D_OK;
179 case D3DFMT_X8R8G8B8: if(!Capabilities::Surface::RenderTarget::X8R8G8B8) return NOTAVAILABLE(); else return D3D_OK
    [all...]
Capabilities.hpp 26 struct RenderTarget
133 struct RenderTarget
240 struct RenderTarget
  /external/deqp/framework/platform/null/
tcuNullRenderContext.hpp 61 virtual const tcu::RenderTarget& getRenderTarget (void) const { return m_renderTarget; }
68 const tcu::RenderTarget m_renderTarget;
  /external/deqp/modules/gles31/
tes31Context.hpp 37 class RenderTarget;
54 const tcu::RenderTarget& getRenderTarget (void) const;
tes31Context.cpp 86 const tcu::RenderTarget& Context::getRenderTarget (void) const
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
RenderTarget.java 38 public final class RenderTarget {
52 /** Stores the RenderTarget that is focused on the current thread. */
53 private static ThreadLocal<RenderTarget> mCurrentTarget = new ThreadLocal<RenderTarget>();
86 public static RenderTarget newTarget(int width, int height) {
92 RenderTarget result = new RenderTarget(eglDisplay, eglContext, eglSurface, 0, true, true);
97 public static RenderTarget currentTarget() {
103 public RenderTarget forTexture(TextureSource texture, int width, int height) {
115 return new RenderTarget(mDisplay, mContext, surface(), fbo, false, false)
    [all...]
  /external/deqp/framework/platform/ios/
tcuIOSPlatform.hh 92 virtual const RenderTarget& getRenderTarget (void) const { return m_emptyTarget; }
103 tcu::RenderTarget m_emptyTarget;
112 virtual const RenderTarget& getRenderTarget (void) const { return m_renderTarget; }
125 tcu::RenderTarget m_renderTarget;
  /external/deqp/modules/gles31/functional/
es31fMultisampleShaderRenderCase.hpp 60 enum RenderTarget
74 MultisampleRenderCase (Context& context, const char* name, const char* desc, int numSamples, RenderTarget target, int renderSize, int flags = 0);
108 const RenderTarget m_renderTarget;
  /cts/tests/tests/graphics/src/android/graphics/cts/
RenderTarget.java 53 public final class RenderTarget {
61 HandlerThread thread = new HandlerThread("RenderTarget-GL");
67 public static RenderTarget create() {
68 GenericFuture<RenderTarget> future = new GenericFuture<>();
81 private RenderTarget(SurfaceTexture surfaceTexture, int glTexId) {
109 createSink((GenericFuture<RenderTarget>) msg.obj);
112 destroySink((RenderTarget) msg.obj);
121 private void createSink(GenericFuture<RenderTarget> sinkFuture) {
126 sinkFuture.setResult(new RenderTarget(texture, tex[0]));
129 private void destroySink(RenderTarget sink)
    [all...]
  /external/deqp/framework/referencerenderer/
rrRenderer.hpp 36 class RenderTarget
44 RenderTarget (const MultisamplePixelBufferAccess& colorMultisampleBuffer,
112 DrawCommand (const RenderState& state_, const RenderTarget& renderTarget_, const Program& program_, int numVertexAttribs_, const VertexAttrib* vertexAttribs_, const PrimitiveList& primitives_)
114 , renderTarget (renderTarget_)
123 const RenderTarget& renderTarget;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
MediaDecoder.java 29 import androidx.media.filterfw.RenderTarget;
95 private RenderTarget mRenderTarget;
305 RenderTarget.focusNone();
396 private RenderTarget getRenderTarget() {
398 mRenderTarget = RenderTarget.newTarget(1, 1);
  /external/deqp/framework/platform/win32/
tcuWGLContextFactory.cpp 72 const RenderTarget& getRenderTarget (void) const { return m_renderTarget; }
85 tcu::RenderTarget m_renderTarget;
119 m_renderTarget = tcu::RenderTarget(size.x(), size.y(),
tcuWin32GLES3Platform.cpp 65 const RenderTarget& getRenderTarget (void) const { return m_renderTarget; }
73 RenderTarget m_renderTarget;
114 m_renderTarget = tcu::RenderTarget(size.x(), size.y(),

Completed in 2625 milliseconds

1 2 3 4 5 6