summaryrefslogtreecommitdiff
path: root/src/apps/cam/sdl_texture.h
blob: 3993dd46ece71827637ecfa89ae890bb65fb376f (plain)
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
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2022, Ideas on Board Oy
 *
 * sdl_texture.h - SDL Texture
 */

#pragma once

#include <vector>

#include <SDL2/SDL.h>

#include "../common/image.h"

class SDLTexture
{
public:
	SDLTexture(const SDL_Rect &rect, uint32_t pixelFormat, const int stride);
	virtual ~SDLTexture();
	int create(SDL_Renderer *renderer);
	virtual void update(const std::vector<libcamera::Span<const uint8_t>> &data) = 0;
	SDL_Texture *get() const { return ptr_; }

protected:
	SDL_Texture *ptr_;
	const SDL_Rect rect_;
	const uint32_t pixelFormat_;
	const int stride_;
};