mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
Removed deleted virtual functions
This solves linking errors on macOS with missing ___cxa_deleted_virtual symbol
This commit is contained in:
parent
b0c96ac43d
commit
568d439c24
1 changed files with 0 additions and 3 deletions
|
@ -225,14 +225,12 @@ public:
|
|||
};
|
||||
|
||||
// Returns a single column of the texture
|
||||
virtual const uint8_t *GetColumn(unsigned int column, const Span **spans_out) = delete;
|
||||
virtual const uint8_t *GetColumn(FRenderStyle style, unsigned int column, const Span **spans_out) = 0;
|
||||
|
||||
// Returns a single column of the texture, in BGRA8 format
|
||||
virtual const uint32_t *GetColumnBgra(unsigned int column, const Span **spans_out);
|
||||
|
||||
// Returns the whole texture, stored in column-major order
|
||||
virtual const uint8_t *GetPixels() = delete;
|
||||
virtual const uint8_t *GetPixels(FRenderStyle style) = 0;
|
||||
|
||||
// Returns the whole texture, stored in column-major order, in BGRA8 format
|
||||
|
@ -595,7 +593,6 @@ protected:
|
|||
const uint8_t *GetColumn(FRenderStyle style, unsigned int column, const Span **spans_out) override;
|
||||
const uint8_t *GetPixels(FRenderStyle style) override;
|
||||
void Unload() override;
|
||||
virtual void MakeTexture() = delete;
|
||||
virtual uint8_t *MakeTexture(FRenderStyle style) = 0;
|
||||
void FreeAllSpans();
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue