mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-26 13:42:48 -05:00 
			
		
		
		
	Report correct shader size.
Seems like this was an oversee in regards to 1fd979f50a
It changed GLShader::ProgramCode to a std::vector, so sizeof is wrong.
			
			
This commit is contained in:
		| @@ -30,7 +30,7 @@ public: | ||||
|  | ||||
|     /// Gets the size of the shader in guest memory, required for cache management | ||||
|     size_t GetSizeInBytes() const { | ||||
|         return sizeof(GLShader::ProgramCode); | ||||
|         return GLShader::MAX_PROGRAM_CODE_LENGTH * sizeof(u64); | ||||
|     } | ||||
|  | ||||
|     /// Gets the shader entries for the shader | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Markus Wick
					Markus Wick