StuBS
FPS Class Reference

#include <user/graphics/fps.h>

Inheritance diagram for FPS:
[legend]
Collaboration diagram for FPS:
[legend]

Public Member Functions

 FPS ()
 
void show ()
 Prints the FPS.
 
void frame (bool drawn)
 FPS counting function.
 
void action ()
 Method that contains the thread's program code.
 
- Public Member Functions inherited from Thread
 Thread ()
 Constructor Initializes the context using prepareContext with the highest aligned address of the reserved_stack_space array as stack pointer (top of stack). Furthermore, assign each thread a unique id using a global variable idCounter. You have to declare and initialize it properly.
 
void go ()
 Activates the first thread on this CPU.
 
void resume (Thread *next)
 Switches from the currently running thread to the next one.
 
WaitingroomgetWaitingroom () const
 Returns the Waitingroom in which the thread is currently waiting.
 
void setWaitingroom (Waitingroom *w)
 Marks the thread as waiting for an event in Waitingroom w.
 

Private Attributes

volatile unsigned count_drawn
 
volatile unsigned count_undrawn
 
GraphicsStream gout
 

Additional Inherited Members

- Public Attributes inherited from Thread
const size_t id
 Unique ID of thread.
 
volatile bool kill_flag
 Marker for a dying thread.
 
- Static Public Attributes inherited from Thread
static const size_t STACK_SIZE = 4096 * 4
 Stack size for each thread.
 
- Protected Member Functions inherited from Queue< T, ContainerType >::Node
 Node ()
 
- Static Protected Member Functions inherited from Thread
static void kickoff (Thread *object)
 Function to start a thread.
 
- Protected Attributes inherited from Thread
StackPointer stackpointer
 Current stack pointer of thread for context switch.
 

Constructor & Destructor Documentation

◆ FPS()

FPS::FPS ( )

Member Function Documentation

◆ show()

void FPS::show ( )

Prints the FPS.

◆ frame()

void FPS::frame ( bool  drawn)

FPS counting function.

Parameters
drawnSpecifies whether the frame was written to video memory

◆ action()

void FPS::action ( )
virtual

Method that contains the thread's program code.

Derived classes are meant to override this method to provide meaningful code to be run in this thread.

Implements Thread.

Member Data Documentation

◆ count_drawn

volatile unsigned FPS::count_drawn
private

◆ count_undrawn

volatile unsigned FPS::count_undrawn
private

◆ gout

GraphicsStream FPS::gout
private

The documentation for this class was generated from the following files: