videoctrl: add pixel_depth member.

This commit is contained in:
Maxim Poliakovski 2022-04-13 23:14:37 +02:00
parent 3a4f22f459
commit 8fcdc5298a
2 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,6 @@ protected:
private: private:
uint8_t video_mode; uint8_t video_mode;
uint8_t pixel_depth;
uint8_t blanking; uint8_t blanking;
uint8_t vdac_mode; uint8_t vdac_mode;
uint8_t clut_index; uint8_t clut_index;

View File

@ -45,6 +45,7 @@ protected:
bool crtc_on = false; bool crtc_on = false;
int active_width; // width of the visible display area int active_width; // width of the visible display area
int active_height; // height of the visible display area int active_height; // height of the visible display area
int pixel_depth;
float pixel_clock; float pixel_clock;
float refresh_rate; float refresh_rate;