Hash :
fb82b119
Author :
Date :
2020-11-22T09:05:06
EGL: Add const to several methods. This is in preparatino for auto-generating the EGL validation header. The auto-generation script will force multiple parameters to const. Bug: angleproject:2621 Change-Id: I04e442c6ff118fd7c296341f12f442901f6fb8c0 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2552979 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Cody Northrop <cnorthrop@google.com> Commit-Queue: Jamie Madill <jmadill@chromium.org>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
//
// Copyright 2016 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// StreamProducerD3DTexture.h: Interface for a D3D11 texture stream producer
#ifndef LIBANGLE_RENDERER_D3D_D3D11_STREAM11_H_
#define LIBANGLE_RENDERER_D3D_D3D11_STREAM11_H_
#include "libANGLE/renderer/StreamProducerImpl.h"
namespace rx
{
class Renderer11;
class StreamProducerD3DTexture : public StreamProducerImpl
{
public:
StreamProducerD3DTexture(Renderer11 *renderer);
~StreamProducerD3DTexture() override;
egl::Error validateD3DTexture(const void *pointer,
const egl::AttributeMap &attributes) const override;
void postD3DTexture(void *pointer, const egl::AttributeMap &attributes) override;
egl::Stream::GLTextureDescription getGLFrameDescription(int planeIndex) override;
// Gets a pointer to the internal D3D texture
ID3D11Texture2D *getD3DTexture();
// Gets the slice index for the D3D texture that the frame is in
UINT getArraySlice();
private:
Renderer11 *mRenderer;
ID3D11Texture2D *mTexture;
UINT mArraySlice;
UINT mPlaneOffset;
};
} // namespace rx
#endif // LIBANGLE_RENDERER_D3D_D3D11_STREAM11_H_